I have a directory with roughly 100000 files in it, and I want to perform some function on all files beginning with a specified string, which may match tens...
Why is there a difference in output between using find . -exec ls '{}' \+ and find . -exec ls '{}' \; I got: $ find . -exec ls...
I need to find all image files from directory (gif, png, jpg, jpeg). find /path/to/ -name "*.jpg" > log How to modify this string to find not only .jpg...
find . -type d can be used to find all directories below some start point. But it returns the current directory (.) too, which may be undesired. How can...
I often use the find command to search through source code, delete files, whatever. Annoyingly, because Subversion stores duplicates of each file in its .svn/text-base/ directories my simple searches...
Is it possible to show all collections and its contents in MongoDB? Is the only way to show one by one? 6 Answers 6
I’m using Visual Studio 2010 and when I do a “Find in Files” the results are returned to the “Find Results 1” window which is docked below my code...
Is there a way to get find to execute a function I define in the shell? For example: dosomething () { echo "Doing something with $1" } find ....
I am doing a find and then getting a list of files. How do I pipe it to another utility like cat (so that cat displays the contents of...
I have an archive, which is archived by someone else, and I want to automatically, after I download it, to change a branch of the file system within the...