फ़ाइल के नाम में स्ट्रिंग और फ़ाइल के भीतर अलग-अलग स्ट्रिंग वाली फाइलें खोजें?


17

मैं (एबीसीसी) उनके फ़ाइल नाम में "एबीसी" के साथ सभी फाइलें ढूंढना चाहता हूं, जिसमें फ़ाइल में "एक्सवाईजेड" भी शामिल है। मैंने कोशिश की:

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

जीएनयू 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'

लेकिन @ टेर्डन का उपयोग find … -exec grep -l 'XYZ' '{}' +सरल और बेहतर है।


-1

लिनक्स कमांड: ll -iR | grep "फ़ाइल नाम"

ex: Bookname.txt तो ll -iR का उपयोग करें | grep "Bookname" या ll -iR | grep "नाम" या ll -iR | grep "बुक"

हम फ़ाइल नाम के भाग के साथ खोज कर सकते हैं।

यह वर्तमान और उप फ़ोल्डरों से मेल खाने वाले सभी फ़ाइल नामों को सूचीबद्ध करेगा


यह केवल एक आंशिक उत्तर है क्योंकि यह प्रश्न के "फ़ाइल के अंदर खोज" को संबोधित नहीं करता है। फ़ाइल नाम ग्लोबिंग पैटर्न का उपयोग करना भी बहुत अधिक कुशल है, संभवतः संयोजन में findजैसा कि कुछ अन्य उत्तरों में दिखाया गया है।
Kusalananda
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.