About 44,200 results
Open links in new tab
  1. regex - Unix - Using find to List all .html files. (Do not use shell ...

    Sep 20, 2013 · You have to single quote the wildcard to keep the shell from globbing it when passing it to find.

  2. find - list all directories containing *.html files and also list the ...

    Oct 29, 2016 · This prints the pathname of each directory containing any regular file whose name ends with either .htm or .html (regardless of case), followed by the ls -l output for that directory.

  3. find Command in Linux: Search Files and Directories

    Jul 8, 2026 · The find command searches for files and directories by name, type, size, date, permissions, and more. This guide covers practical examples including wildcards, …

    Missing:
    • html
    Must include:
  4. How To Use Find and Locate to Search for Files on Linux

    Mar 20, 2026 · Learn how to use the find and locate commands to search for files on Linux by name, type, size, permissions, and modification time. Covers exec, xargs, grep …

  5. How can I view all files in a website's directory? - Super User

    Is it possible to list all files and directories in a given website's directory from the Linux shell? Something similar to: but instead of some_directory, it would be ls -l http://www.some_site.com/some_directory/. …

  6. Find Command in Linux - GeeksforGeeks

    Dec 27, 2025 · The find command in Linux is used to search for files and directories based on name, type, size, date, or other conditions. It scans the specified directory and its sub directories to locate …

    Missing:
    • html
    Must include:
  7. Mastering the `find` Command for Searching Files in All Directories in ...

    Jan 16, 2026 · In this blog post, we will delve into the fundamental concepts, usage methods, common practices, and best practices of using the find command to search for files in all directories in Linux.

    Missing:
    • html
    Must include:
  8. bash - Find all HTML files in a set of folders, extract specific HTML ...

    Oct 8, 2019 · I've currently managed to locate all HTML files using find, passed that content using the cat command to pup which parses the content and looks at the <article> tag and pipes the content to …

  9. Mastering Recursive File Search in Linux with `find`

    Apr 19, 2026 · In the vast landscape of Linux file systems, the ability to locate specific files is a crucial skill. One of the most powerful tools at your disposal for this task is the find command. The recursive …

    Missing:
    • html
    Must include:
  10. How to Recursively Find all Files in Current and ... - GeeksforGeeks

    Jul 23, 2025 · The find command in Linux, combined with wildcard matching and advanced options, offers powerful functionality for locating and managing files. Whether you're searching based on file …