bash for loop
Snippet
Instead of being asleep at 13:25 on 27 December 2017, kitt created this:
Because you need a loop when you're not in tcsh.
for fn in `cat filenames.txt`; do echo "the next file is $fn" cat $fn done # my one-liner for f in `ls *JPG`; do echo $f; gallery-post.sh $f; done
Add new comment