ฉันต้องการ (เรียกซ้ำ) ค้นหาไฟล์ทั้งหมดที่มี "ABC" ในชื่อไฟล์ซึ่งมี "XYZ" ในไฟล์ด้วย ฉันเหนื่อย:
find . -name "*ABC*" | grep -R 'XYZ'
แต่มันไม่ได้ให้ผลลัพธ์ที่ถูกต้อง
ฉันต้องการ (เรียกซ้ำ) ค้นหาไฟล์ทั้งหมดที่มี "ABC" ในชื่อไฟล์ซึ่งมี "XYZ" ในไฟล์ด้วย ฉันเหนื่อย:
find . -name "*ABC*" | grep -R 'XYZ'
แต่มันไม่ได้ให้ผลลัพธ์ที่ถูกต้อง
คำตอบ:
นั่นเป็นเพราะgrep
ไม่สามารถอ่านชื่อไฟล์เพื่อค้นหาผ่านจากอินพุตมาตรฐาน สิ่งที่คุณกำลังทำคือการพิมพ์ไฟล์ชื่อXYZ
ที่ประกอบด้วย การใช้งานfind
ของ-exec
ตัวเลือกแทน:
find . -name "*ABC*" -exec grep -H 'XYZ' {} +
จากman find
:
-exec command ;
Execute command; true if 0 status is returned. All following
arguments to find are taken to be arguments to the command until
an argument consisting of `;' is encountered. The string `{}'
is replaced by the current file name being processed everywhere
it occurs in the arguments to the command, not just in arguments
where it is alone, as in some versions of find.
[...]
-exec command {} +
This variant of the -exec action runs the specified command on
the selected files, but the command line is built by appending
each selected file name at the end; the total number of invoca‐
tions of the command will be much less than the number of
matched files. The command line is built in much the same way
that xargs builds its command lines. Only one instance of `{}'
is allowed within the command. The command is executed in the
starting directory.
หากคุณไม่ต้องการบรรทัดที่ตรงกันจริง ๆ แต่มีเพียงรายชื่อไฟล์ที่มีสตริงอย่างน้อยหนึ่งรายการให้ใช้สิ่งนี้แทน:
find . -name "*ABC*" -exec grep -l 'XYZ' {} +
ฉันค้นหาคำสั่งต่อไปนี้เป็นวิธีที่ง่ายที่สุด:
grep -R --include="*ABC*" XYZ
หรือเพิ่ม-i
ในการค้นหากรณีตาย:
grep -i -R --include="*ABC*" XYZ
… | grep -R 'XYZ'
ไม่สมเหตุสมผล ในมือข้างหนึ่ง-R 'XYZ'
หมายถึงการกระทำซ้ำในXYZ
ไดเรกทอรี ในทางกลับกัน… | grep 'XYZ'
หมายถึงการค้นหารูปแบบXYZ
ในgrep
อินพุตมาตรฐานของ \
ใน Mac OS X หรือ BSD grep
จะถือว่าXYZ
เป็นรูปแบบและบ่นว่า:
$ echo XYZ | grep -R 'XYZ'
grep: warning: recursive search of stdin
(standard input):XYZ
GNU grep
จะไม่บ่น แต่จะถือว่าXYZ
เป็นรูปแบบโดยไม่สนใจอินพุตมาตรฐานและการค้นหาแบบเรียกซ้ำเริ่มต้นจากไดเรกทอรีปัจจุบัน
สิ่งที่คุณตั้งใจทำน่าจะเป็น
find . -name "*ABC*" | xargs grep -l 'XYZ'
... ซึ่งคล้ายกับ
grep -l 'XYZ' $(find . -name "*ABC*")
... ทั้งคู่บอกgrep
ให้ค้นหาXYZ
ในชื่อไฟล์ที่ตรงกัน
อย่างไรก็ตามโปรดทราบว่าช่องว่างใด ๆ ในชื่อไฟล์จะทำให้ทั้งสองคำสั่งหยุดพัก คุณสามารถใช้xargs
อย่างปลอดภัยโดยใช้NULเป็นตัวคั่น:
find . -name "*ABC*" -print0 | xargs -0 grep -l 'XYZ'
แต่วิธีการใช้ @ terdon find … -exec grep -l 'XYZ' '{}' +
นั้นง่ายและดีกว่า
Linux Commend: ll -iR | grep "ชื่อไฟล์"
ตัวอย่าง: Bookname.txt จากนั้นใช้ ll -iR | grep "Bookname" หรือ ll -iR | grep "name" หรือ ll -iR | grep "หนังสือ"
เราสามารถค้นหาด้วยชื่อไฟล์บางส่วน
นี่จะแสดงรายการชื่อไฟล์ทั้งหมดที่ตรงกับโฟลเดอร์ปัจจุบันและโฟลเดอร์ย่อย
find
คำตอบอื่น ๆ