Linux Advanced Commands (V): Find File command, can speak commands used to find files

Find File command


learning target

  • You can speak commands used to find files

1. find and use the command options

command Explanation
find In the specified directory to find the file (including directory)

find command options:

Options Explanation
-name Find the file name (including directory name) word

find renderings commands and options:

[Image dump the chain fails, the source station may have security chain mechanism, it is recommended to save the picture down uploaded directly (img-SVLa4XZX-1583934678354) (imgs / find% E9% 80% 89% E9% A1% B9.png)]

2. find command together with a wildcard

Wildcard:

It is a special statement, mainly with an asterisk (*) and question mark (?), Fuzzy search for files

Wildcards Explanation
* It represents 0 or more of any character
? Represent any one character

* Wildcard renderings:

[Pictures of foreign chains dumping fails, the source station may have security chain mechanism, it is recommended to save the picture down uploaded directly (img-uxkPmwsm-1583934678355) (imgs /% E9% 80% 9A% E9% 85% 8D% E7% AC% A61.png)]

? Wildcard renderings:

[Pictures of foreign chains dumping fails, the source station may have security chain mechanism, it is recommended to save the picture down uploaded directly (img-y0cmdjgg-1583934678355) (imgs /% E9% 80% 9A% E9% 85% 8D% E7% AC% A62.png)]

Extended:

Wildcards can be combined not only find command, you can also use in combination with other commands, such as: LS, mv, cp , etc. It should be noted that only the find command using a wildcard requires quotation marks.

Extended renderings:

[Image dump the chain fails, the source station may have security chain mechanism, it is recommended to save the picture down uploaded directly (img-XSUIK8Y4-1583934678356) (imgs / find% E6% 89% A9% E5% B1% 95.png)]

3. Summary

  • find command to find the file operation is completed
  • Find File command format: find the specified search directory -name "filename"
Published 698 original articles · won praise 929 · views 120 000 +

Guess you like

Origin blog.csdn.net/qq_35456045/article/details/104806818
Recommended