find Unix Utility
Jump to navigation
Jump to search
A find Unix Utility is a Unix utility that is a search utility for a file system.
- Example(s):
find . -type d -maxdepth 1 -name '[!.]*' -print
; find all directories in the current working directory.
- See: awk, File Operation.