मैं (एबीसीसी) उनके फ़ाइल नाम में "एबीसी" के साथ सभी फाइलें ढूंढना चाहता हूं, जिसमें फ़ाइल में "एक्सवाईजेड" भी शामिल है। मैंने कोशिश की:
find . -name "*ABC*" | grep -R '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
जीएनयू 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' '{}' +
सरल और बेहतर है।
लिनक्स कमांड: ll -iR | grep "फ़ाइल नाम"
ex: Bookname.txt तो ll -iR का उपयोग करें | grep "Bookname" या ll -iR | grep "नाम" या ll -iR | grep "बुक"
हम फ़ाइल नाम के भाग के साथ खोज कर सकते हैं।
यह वर्तमान और उप फ़ोल्डरों से मेल खाने वाले सभी फ़ाइल नामों को सूचीबद्ध करेगा
find
जैसा कि कुछ अन्य उत्तरों में दिखाया गया है।