Nerd Posts
UNIX: Find command
Common uses for the FIND command.
1. find all hidden .svn folders and delete them
find /path/to/search -name '.svn' -type d -exec rm -rf '{}' \;
2. find all hidden .svn folders and print them
find /path/to/search -name '.svn' -type d -print
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment