paperlined.org
apps > bash
document updated 12 years ago, on Apr 7, 2012
Run a command over and over (when watch isn't available).

while true; do ls -lrt; sleep 1; done


Convert files from one format to another.

for f in *.flv; do flv2mp3 --in $f --out $(sed 's/flv$/mp3/' <<< $f); done