To find two or more file types, use the logical OR operator.
$ find . -type d -o -type l
This example finds all directories and symbolic links in the current directory.
To find two or more file types, use the logical OR operator.
$ find . -type d -o -type l
This example finds all directories and symbolic links in the current directory.
Comments
Leave a Reply