Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
docs:bash:bash_loop [2010/03/07 13:47] – billh | docs:bash:bash_loop [2010/05/07 11:19] (current) – billh | ||
---|---|---|---|
Line 12: | Line 12: | ||
ls -1L *.tiff | while read file;do | ls -1L *.tiff | while read file;do | ||
tiff2pdf -p letter -o " | tiff2pdf -p letter -o " | ||
+ | done | ||
+ | </ | ||
+ | * use a file containing a list of filenames for a copy operation:< | ||
+ | cat fileswithnotesbug.txt | while read file;do | ||
+ | cp " | ||
done | done | ||
</ | </ |