add serveral script file

This commit is contained in:
2020-01-07 02:08:40 +08:00
parent 922cc9afc1
commit 796ce1d87f
4 changed files with 33 additions and 0 deletions

8
script/test.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
count=1
while true; do
echo $count
count=$((count+1))
sleep 1
done