1 2 3 4 5 6 7 8 9 10 11
#!/bin/sh for s in /etc/init.d/S*; do if [ -x $s ]; then $s start fi done echo echo "STK1000 ready" echo