ग्रेनो डेस्कटॉप (लिनक्स) में गलत संदेश लौटाने वाला ग्रीप


0

मुझे एक फ़ोल्डर संरचना के अंदर एक विशेष स्ट्रिंग को खोजने की आवश्यकता है।

फ़ाइल सिस्टम में कई फाइलें हैं, लेकिन मुझे केवल XML फाइलों की जांच करनी है।

मैंने लिनक्स पुनरावर्ती खोज के लिए आदेशों को खोजा और आजमाया लेकिन यह काम नहीं किया। मुझे कमांड से निम्न आउटपुट मिला है

$ grep -rio --include=*.xml "invokeAction" .
grep: No match.
$ grep -riwc "invokeAction" *
grep: <.Lists all the file Names recursively.>: No such file or directory
$ grep -ir invokeAction *.xml
grep: <.Lists all the file Names.>: No such file or directory

कृपया मदद कीजिए।

मुझे खोज करने की जरूरत है

String: "invokeAction"
Mode: Word Only
Directory: Current Directory Recursively 

जवाबों:


0

यह सभी पायथन फ़ाइलों (* .py) के लिए पथ से, पुनरावर्ती रूप से खोज करेगा, और आपकी फ़ाइल पर grep -l आयात चलाएगा

find /path/To/Seach -iname \*.py -exec grep -l import {} \;

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.