10 lines
86 B
Bash
Executable File
10 lines
86 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for s in /etc/init.d/S*; do
|
|
$s start
|
|
done
|
|
|
|
echo
|
|
echo "STK1000 ready"
|
|
echo
|