ค้นหาไฟล์ที่มีสตริงในชื่อไฟล์และสตริงอื่นภายในไฟล์หรือไม่


17

ฉันต้องการ (เรียกซ้ำ) ค้นหาไฟล์ทั้งหมดที่มี "ABC" ในชื่อไฟล์ซึ่งมี "XYZ" ในไฟล์ด้วย ฉันเหนื่อย:

find . -name "*ABC*" | grep -R 'XYZ'

แต่มันไม่ได้ให้ผลลัพธ์ที่ถูกต้อง

คำตอบ:


26

นั่นเป็นเพราะ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' {} +

2

ฉันค้นหาคำสั่งต่อไปนี้เป็นวิธีที่ง่ายที่สุด:

grep -R --include="*ABC*" XYZ

หรือเพิ่ม-iในการค้นหากรณีตาย:

grep -i -R --include="*ABC*" XYZ

1

… | 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' '{}' +นั้นง่ายและดีกว่า


-1

Linux Commend: ll -iR | grep "ชื่อไฟล์"

ตัวอย่าง: Bookname.txt จากนั้นใช้ ll -iR | grep "Bookname" หรือ ll -iR | grep "name" หรือ ll -iR | grep "หนังสือ"

เราสามารถค้นหาด้วยชื่อไฟล์บางส่วน

นี่จะแสดงรายการชื่อไฟล์ทั้งหมดที่ตรงกับโฟลเดอร์ปัจจุบันและโฟลเดอร์ย่อย


นี่เป็นเพียงคำตอบเพียงบางส่วนเนื่องจากไม่เคยกล่าวถึงส่วน "ค้นหาภายในไฟล์" ของคำถาม นอกจากนี้ยังมีประสิทธิภาพมากขึ้นในการใช้รูปแบบชื่อไฟล์แบบกลม ๆ ซึ่งอาจรวมกับfindคำตอบอื่น ๆ
Kusalananda
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.