1 2 3 4 5 6 7
#!/bin/sh BRIGHTNESS=0 while true ; do BRIGHTNESS=$(( ( $BRIGHTNESS + 1 ) % 2 )) leds $BRIGHTNESS sleep 0.5 done