[undiluted.org's Blog] -> Bash Trick #2
Bash Trick #2
posted by:
nic
on June 5th, 2009 @ 20:54:30
To remove thumbs.db files recursively from directories use this small bash trick: for i in `find . -name thumbs.db`; do rm $i; done
tags: [
bash
,
programming
,
Bash Scripting
]
Show Comments (0)
comments
no comments found.
Please login to Comment
Back to blog main
Comment: