This website requires JavaScript.
Explore
Help
Register
Sign In
ragib
/
test-shell-script
Watch
1
Star
0
Fork
You've already forked test-shell-script
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
main
test-shell-script
/
input.sh
12 lines
89 B
Bash
Raw
Permalink
Blame
History
#! /bin/bash
#loop: while
n
=
1
while
[
$n
-le
6
]
do
echo
"
$n
"
n
=
$((
n+1
))
sleep
2
done
Reference in New Issue
View Git Blame
Copy Permalink