I am trying to search for *.csv files in file system. There are symbolic links in certain directories that i am looking through, but i want to ignore certain directories since they result in nasty long time consuming cycles.
find -L "location" -name "*.csv >> find_result.txt
How can i tell find to ignore certain directories while keep looking at symbolic links in others.
Use
-pruneto tellfindnot to descend into a given directory. For instance: