mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
8 lines
148 B
Bash
Executable File
8 lines
148 B
Bash
Executable File
#!/bin/sh
|
|
# Start all init scripts in /etc/init.d
|
|
# executing them in numerical order.
|
|
#
|
|
for i in /etc/init.d/S* ;do
|
|
[ -f "$i" ] && $i start
|
|
done
|