execute a for loop on the command-line
December 20th, 2006 by Lawrence David
here’s a shell for executing a ‘for loop’ on the bash command-line:
for i in `ls boot*`; do echo $i; done
December 20th, 2006 by Lawrence David
here’s a shell for executing a ‘for loop’ on the bash command-line:
for i in `ls boot*`; do echo $i; done