About 917,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. 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

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

  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. Git: Command not found Windows - Super User

    For some reason, in Cygwin and in Command prompt (Windows 8), the git command is not found. I selected the option for Windows explorer integration and the "GIT GUI/ repo here" option …

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

  8. Command to find files for a specific time range - Super User

    Jan 17, 2018 · Yes, the find command can do this. It will take some experimentation and reading and re-reading the man page to get it to do what you want, but is amazing command. Below …

  9. linux - Faster alternatives to "find" and "locate"? - Super User

    Sep 29, 2011 · I will like to use "find" and locate" to search for source files in my project, but they take a long time to run. Are there faster alternatives to these programs I don't know about, or …

  10. How do I execute multiple commands when using find?

    I'm trying to run multiple commands on things I have found, how can I achieve this? find . -exec cmd1; cmd2 does not seem to work; it instead runs cmd2 after cmd1 has been executed on …