-
Notifications
You must be signed in to change notification settings - Fork 0
Unix Loops
Kyle Coberly edited this page Oct 1, 2017
·
3 revisions
[Loop Header]
do
# Loop Body, reference iterator with $i
donefor i in *for i in $(ls -l)for ((i=0; i<5; i++))while [ $some_variable -lt 10 ]until [ $some_variable -gt 10 ]-
continue 3- How many loops you want to jump up -
break 3- How many loops you want to jump up wait [process_id]exit-
sleep 10- (seconds)