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