Jump to content

Loop structures: Difference between revisions

Line 815:
===while===
'''Interpreter:''' [[bourne SHell]]
 
#!/bin/sh
# repeat a command 100 times
x=1
while [ $x -lt 101 ]
Line 825:
 
'''Interpreter:''' [[Bourne Again SHell]]
 
#!/bin/bash
while true
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.