约 125,000 个结果
在新选项卡中打开链接
  1. linux - How can I recursively find all files in current and subfolders ...

    2016年8月17日 · How can I recursively find all files in current and subfolders based on wildcard matching?

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

    2013年6月6日 · 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 …

  3. 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 …

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

    2014年8月27日 · 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 …

  5. Recursively find all files newer than a given time [closed]

    2017年5月13日 · How can I list all files newer than a given time? I'm looking for a one-liner that I can run in Bash with standard Linux utilities. I know how to list all files newer than a given file …

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

    2011年7月27日 · 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" …

  7. How to loop through file names returned by find? - Stack Overflow

    2012年3月8日 · In this case, -exec tells find to execute the following command, terminated by ; (or +), wherein {} will be replaced by the name of the file it is processing (or, if + is used, all files …

  8. How maxdepth and mindepth works with find command?

    2020年2月6日 · I want to know how the maxdepth and mindepth works with find command. And also want to know how the below command works, find . -mindepth 2 -maxdepth 5 -name 'file1'

  9. How to use 'find' to search for files created on a specific date?

    2015年12月31日 · To find all files accessed on the 29th of september, 2008: $ find . -type f -newerat 2008-09-29 ! -newerat 2008-09-30 Or, files which had their permission changed on …

  10. 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.