Removing *.ext files from your volumes
Works for all linux based machines. :)
find . -iname "*.txt" -exec rm '{}' ';'
find . -iname "*.sfv" -exec rm '{}' ';'
find . -iname "*.nfo" -exec rm '{}' ';'
Replace the . with your location. Most of the time I'm located in the folder to execute the command. :)
Lovely
^_^
find . -iname "*.txt" -exec rm '{}' ';'
find . -iname "*.sfv" -exec rm '{}' ';'
find . -iname "*.nfo" -exec rm '{}' ';'
Replace the . with your location. Most of the time I'm located in the folder to execute the command. :)
Lovely
^_^
Comments
Post a Comment