About 939,000 results
Open links in new tab
  1. command line - How to find a directory on linux? - Super User

    In case someone's wondering, the command in the question finds all directories (-type d) in the directory entry httpdocs (relative to the current working directory, usually but not necessarily a …

  2. Equivalent of Unix find command on Windows - Super User

    Mar 16, 2012 · What is the equivalent of the Unix find command on Windows? I see that the find.exe on Windows is more like a grep. I am especially interested in the equivalent of find . …

  3. How to get rid of errors when running find command in Linux?

    How to get rid of errors when running find command in Linux? Ask Question Asked 12 years, 10 months ago Modified 12 years, 10 months ago

  4. How to ignore certain filenames using "find"? - Super User

    find . -name '*.*' -exec grep 'SearchString' {} /dev/null \; which searches the contents of all of the files at and below the current directory for the specified SearchString. As a developer, this has …

  5. How do I list files with full paths in Linux? - Super User

    Jan 3, 2013 · 1 find s/ a/ b/ -exec realpath {} \; NOTE: you should be in the dir where s, a and b are present as nested dirs and you should have realpath unix utility (or command installed), it …

  6. Unix/Linux find and sort by date modified - Super User

    Sep 7, 2012 · If command * exits with a failure status (ie Argument list too long), then you can iterate with find. Paraphrased from: The maximum length of arguments for a new process find …

  7. How can I search the bash history and rerun a command?

    Jul 17, 2009 · 4 At the bash command prompt, type control-R, then type a few characters of the command you want and bash's readline facility will search through the command history for …

  8. Find and delete files with linux command line - Super User

    Jan 23, 2024 · Find and delete files with linux command line Ask Question Asked 1 year, 10 months ago Modified 10 months ago

  9. What does ' {} \;' mean in the 'find' command context?

    In conjunction with the find command's exec option, the {} part is replaced by the name of the files found when the command is executed. The \; is important too, because that is what defines …

  10. find - How to display file details (size, date, etc.) from Linux ...

    The (slow) Linux “find” command has an option, “-ls”, to display size, date, etc. like the “ls -l” command. But the “locate” command doesn’t seem to have that. So how can I get the equivalent