Tips, Tricks and Tools
... and Thoughts
(Move to ...)
Home
All Posts
Firefox Extensions
JavaScript Compiler and Encoder
Bulk Player for YouTube
Misc Tools
Support
▼
Thursday, August 15, 2019
Linux: skip a directory in find command
For example, to skip a sub-directory named .git and all the contents under it, run command:
$ find . -path ./.git -prune -o -print
option -prune is used to skip the directory specified by -path.
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment