
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.
regex - Unix - Using find to List all .html files. (Do not use shell ...
Sep 20, 2013 · I've tried 'find -name .html$', 'find -name .html\>'. None worked. I'd like to know why these two are wrong and what's the right one to use with no wildcards?
Find Command in Linux (Find Files and Directories) | Linuxize
Jan 21, 2026 · Learn how to use the Linux find command to locate files and directories by name, type, size, and time.
command line - search in subdirectories for all html files containing ...
Jun 13, 2015 · From the terminal, use the find command to find all the files ending in .html and use the grep command to filter the results to show only the names of files that contain the <abbr> string: The …
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/. …
find Command in Linux: Complete Cheat Sheet with 25+ Examples
Mar 4, 2026 · Learn how to use the find command in Linux with this complete cheat sheet. This guide covers find command syntax, commonly used flags, and practical examples for searching files by …
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 …
Getting all the html files in a particular directory - Tek-Tips
Dec 20, 2001 · This will find every match for htm and html under the root "/" directory and subs. The -fprint tells find to print the output to a file called outfile.txt rather than the standard output …
6 Examples to Find Files in Linux with Find Command
Oct 9, 2025 · To find files with a specific name in Linux, you can use the find command with the -name option. Here’s the basic syntax: Where path is the directory to search, and filename is the name of …
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 …