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