Linux One Liners
23rd October 2006
I wanted a place to put quick command that I use. I sometimes forget, and wanted a quick reference for myself.
Remove backup files recursively (bash/sh):
find ./ -name '*~' -exec rm '{}' \; -print
Posted in Linux, Notes | No Comments »