Linux Tutorial: The find command finds the files under the /D path whose file name contains flink, ignoring case

You can use findthe command with -inamethe parameter to search for files containing "flink" in the specified path, and ignore case. Here is an example command:

find /D -iname "*flink*"

In the above command:

  • /Dis the path you are looking for, you can replace it with your actual path.
  • -inameparameter to ignore case matching.
  • "*flink*"is the pattern to match, where "*" means any character.

After executing this command, findit will recursively search for qualified files under the specified path and output their paths. Note that depending on your file system size and directory structure, the command may take some time to complete the search.

insert image description here

Guess you like

Origin blog.csdn.net/a772304419/article/details/132628072