
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?
Find all files containing a specific text (string) on Linux
Jun 6, 2013 · find is the standard tool for searching files - combined with grep when looking for specific text - on Unix-like platforms. The find command is often combined with xargs, by the way.
How to find the files that are created in the last hour in unix
Mar 9, 2011 · $ find srch_dir -amin -60 # access time shows files whose metadata has been changed (ctime), the file contents itself have been modified (mtime), or accessed (atime) in the last hour, …
Windows equivalent of Unix "find" command? - Stack Overflow
Dec 17, 2025 · After long time working with Unix systems I had to make some scripts on Windows. For serious scripting Powershell is the tool you should use. You can search Internet with keywords like …
How do I find all the files that were created today in Unix/Linux?
Apr 29, 2009 · On my Fedora 10 system, with findutils-4.4.0-1.fc10.i386: find <path> -daystart -ctime 0 -print The -daystart flag tells it to calculate from the start of today instead of from 24 hours ago. Note …
unix - How to only find files in a given directory, and ignore ...
Oct 10, 2011 · 15 Is there any particular reason that you need to use find? You can just use ls to find files that match a pattern in a directory.
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.
unix - How do I get the find command to print out the file size with ...
Sep 15, 2008 · Printf works like this: find . -name *.ear -printf "%p %k KB\n" -exec is more powerful and lets you execute arbitrary commands - so you could use a version of 'ls' or 'wc' to print out the …
unix - How to pipe list of files returned by find command to cat to ...
May 14, 2009 · I am doing a find to get a list of files. How do I pipe it to another utility like cat so that cat displays the contents of all those files? Afterwards, I'd use grep on that to search some text in ...
How to search for a text in specific files in unix
Jun 12, 2015 · With -l (L) we make the file name to be printed, without the matched line. Explanation find -type f this finds files in the given directory structure. -name "*.xml" selects those files whose name …