langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
1
Task/Loops-Infinite/UNIX-Shell/loops-infinite-1.sh
Normal file
1
Task/Loops-Infinite/UNIX-Shell/loops-infinite-1.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
while :; do echo SPAM; done
|
||||
1
Task/Loops-Infinite/UNIX-Shell/loops-infinite-2.sh
Normal file
1
Task/Loops-Infinite/UNIX-Shell/loops-infinite-2.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
while true; do echo "SPAM"; done
|
||||
1
Task/Loops-Infinite/UNIX-Shell/loops-infinite-3.sh
Normal file
1
Task/Loops-Infinite/UNIX-Shell/loops-infinite-3.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
until false; do echo "SPAM"; done
|
||||
1
Task/Loops-Infinite/UNIX-Shell/loops-infinite-4.sh
Normal file
1
Task/Loops-Infinite/UNIX-Shell/loops-infinite-4.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
for ((;;)); do echo "SPAM"; done
|
||||
3
Task/Loops-Infinite/UNIX-Shell/loops-infinite-5.sh
Normal file
3
Task/Loops-Infinite/UNIX-Shell/loops-infinite-5.sh
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
while (1)
|
||||
echo SPAM
|
||||
end
|
||||
1
Task/Loops-Infinite/UNIX-Shell/loops-infinite-6.sh
Normal file
1
Task/Loops-Infinite/UNIX-Shell/loops-infinite-6.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
forever {echo SPAM}
|
||||
Loading…
Add table
Add a link
Reference in a new issue