Is there a simple way to recursively find all files in a directory hierarchy, that do not end in a list of extensions? E.g. all files that are not...
I was helped out today with a command, but it doesn’t seem to be working. This is the command: find /home/me/download/ -type f -name "*.rm" -exec ffmpeg -i {}...
I don’t quite understand the example given from the man find, can anyone give me some examples and explanations? Can I combine regular expression in it? The more detailed...
It seems that ls doesn’t sort the files correctly when doing a recursive call: ls -altR . | head -n 3 How can I find the most recently modified...
Is it possible to use the find command in some way that it will not recurse into the sub-directories? For example, DirsRoot |-->SubDir1 | |-OtherFile1 |-->SubDir2 | |-OtherFile2 |-File1...
How do you grep and only return the matching line? i.e. The path/filename is omitted from the results. In this case I want to look in all .bar files...
I am having a hard time getting find to look for matches in the current directory as well as its subdirectories. When I run find *test.c it only gives...
Being forced to use CVS for a current client and the address changed for the remote repo. The only way I can find to change the remote address in...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow....
I need to search a WPF control hierarchy for controls that match a given name or type. How can I do this? 20 Answers 20