mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-24 06:10:11 +00:00
16 lines
163 B
Bash
16 lines
163 B
Bash
|
#!/bin/bash
|
||
|
function fileNum(){
|
||
|
while true
|
||
|
do
|
||
|
echo "sleep background"
|
||
|
sleep 5
|
||
|
done
|
||
|
}
|
||
|
fileNum &
|
||
|
while true
|
||
|
do
|
||
|
echo "sleep foreground"
|
||
|
sleep 1
|
||
|
done
|
||
|
|