Find (Unix command)
Terminology
find . ¶ List all files in current directory and its subdirectories.
find -exec <command> ¶ definition: 'Execute a command on the matches.'
ety: ''
variants: '''{}'' indicates the match. Terminate with ''\;''.'
find -maxdepth <n> ¶ Set maximum directory depth for search.
find -mindepth ¶ Set minimum directory depth for search.
find -name "<pattern>" ¶ Find objects with a name matching the pattern.
find <path> ¶ Find using the given path as the starting point.
find -type f ¶ Find files only.
Facts, Thoughts and Opinions
Images
[[/div]]
- Subtopics
- Writings