Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
cat files_to_del.txt | while read fn; do rm -f ${f}; done
cat files_to_del.txt | while read fn; do echo rm -f ${f}; done
xargs [b]-n20[/b] rm -f < files_to_del.txt
>output.log 2>&1
cat files_to_del.txt | while read fn; do rm ${fn}; done >/tmp/output.log 2>&1
# Using head instead of cat to only try 20 while testing
head -20 files_to_del.txt | while read fn; do [b]ls ${fn}[/b]; done