/ Published in: Bash
Expand |
Embed | Plain Text
find . -name \*.pyc -ok rm {} \;
Comments
Subscribe to comments
You need to login to post a comment.
find . -name \*.pyc -ok rm {} \;
Subscribe to comments
You need to login to post a comment.
add -type f for files, find /searchpath -type f -name "*thepatern*" -exec rm {} \;