About 287,000 results
Open links in new tab
  1. linux - How can I recursively find all files in current and subfolders ...

    Aug 17, 2016 · How can I recursively find all files in current and subfolders based on wildcard matching?

  2. Search for executable files using find command - Stack Overflow

    Dec 16, 2010 · What type of parameter/flag can I use with the Unix find command so that I search executables?

  3. Find all files containing a specific text (string) on Linux

    Jun 6, 2013 · How do I find all files containing a specific string of text within their file contents? The following doesn't work. It seems to display every single file in the system. find / -type f -exec grep -H '

  4. How do I exclude a directory when using `find`? [closed]

    Among the approached variously suggested in this thread (How to exclude a directory in find . command), I find that searches using the accepted answer are much faster -- with caveats.

  5. linux - How to use regex with find command? - Stack Overflow

    Jul 27, 2011 · I have some images named with generated uuid1 string. For example 81397018-b84a-11e0-9d2a-001b77dc0bed.jpg. I want to find out all these images using "find" command: find . -regex …

  6. linux - Explaining the 'find -mtime' command - Stack Overflow

    Sep 1, 2014 · For example, -mtime +1 finds files changed more than 2 days ago => at least 48 hours. If you need more precision, you can use -mmin to search by minutes. You can also combine options …

  7. linux - Exclude list of files from find - Stack Overflow

    1 This solution will go through all files (not exactly excluding from the find command), but will produce an output skipping files from a list of exclusions. I found that useful while running a time-consuming …

  8. How can I exclude all "permission denied" messages from "find"?

    I need to hide all permission denied messages from: find . > files_and_folders I am experimenting when such message arises. I need to gather all folders and files, to which it does not arise. ...

  9. linux - How to find files modified in last x minutes (find -mmin does ...

    Oct 29, 2015 · I'm trying to find files modified in last x minutes, for example in the last hour. Many forums and tutorials on the net suggest to use the find command with the -mmin option, like this: find . -mm...

  10. Using find to locate files that match one of multiple patterns

    Some editions of find, mostly on linux systems, possibly on others aswell support -regex and -regextype options, which finds files with names matching the regex.