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