Exclude a directory or multiple directories using find command

How to exclude a directory or multiple directories using find command? Quick view on >> Find command and switches << Method 1 : Using the option “-prune -o” We can exclude directories by using the help of “path“, “prune“, “o” and “print” switches with find command. See the example: # find ./ -path ./bit/* -prune -o […]

See More