Bash Endless Loop
Friday 19 May 2006 at 6:11 pm. Used tags: bash, endless, loop
I always keep forgetting where the colon (;) key should be placed in a Bash endless loop so thought of jotting it down.
while true; do ls; done
One comment
You'd better use `watch ls` in this case ;-)
Dennis - 13-11-’08 23:51