/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find samba/ -iname '*.mpg' -o -iname '*.avi' -o -iname '*.mov' -o -iname '*.mpeg' -o -iname '*.wmv' -exec rm -f '{}' \;
URL: http://snipplr.com/view/4363/howto-find-files-on-your-computer-with-find/