約 21,800,000 件の結果
リンクを新しいタブで開く
  1. regex - Unix - Using find to List all .html files. (Do not use shell ...

    2013年9月20日 · A command-line parameter like '*.html' is passed, uninterpreted, to the command. In this instance, find uses * in a similar, but not identical, manner as the shell does.

  2. Linux find Command: Syntax, Options, Examples - phoenixNAP

    2025年12月10日 · Learn how to use the Linux find command to locate files and directories with various options and examples.

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

    2016年10月29日 · 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 …

  4. Find Files in Linux: Command Line & GUI Methods

    2025年9月22日 · Discover how to efficiently find files on Linux using command line and GUI methods. Learn the 'find' and 'locate' commands for effective searches.

    欠落単語:
    • html
    次が必須:
  5. Find Command in Linux - GeeksforGeeks

    2025年12月27日 · 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 …

    欠落単語:
    • html
    次が必須:
  6. 6 Examples to Find Files in Linux with Find Command

    2025年10月9日 · 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 …

    欠落単語:
    • html
    次が必須:
  7. command line - search in subdirectories for all html files

    2015年6月13日 · 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 …

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

  9. Unix - Using find to List all .html files. (Do not use shell wildcards ...

    To ignore a directory and the files under it, use -prune; see an example in the description of -path. Braces are not recognised as being special, despite the fact that some shells including Bash …

  10. Mastering the `find` Command for Searching Files in All

    2025年11月14日 · To search for files with a specific name, you can use the -name test. For example, to find all files named example.txt in the current directory and its subdirectories, you …