जवाबों:
संपादित करें: हालांकि निम्नलिखित उत्तर सामान्य उपयोग के मामले की व्याख्या करते हैं, मुझे ध्यान देना चाहिए कि फ़ाइलों और निर्देशिकाओं को हटाना एक विशेष मामला है। -execdir rm {} \;
निर्माण का उपयोग करने के बजाय , बस का उपयोग करें -delete
:
find -iname '*.txt' -delete
यह किनारे के मामलों का एक गुच्छा संभालता है जिनके बारे में आप सोच भी नहीं सकते कि त्रुटियों को न चलाने के लिए कौन सी ऑर्डर फाइलें और निर्देशिकाओं को हटाने की आवश्यकता है। अन्य उपयोग के मामलों के लिए ...
किसी खोज के परिणामों के रनिंग कमांड को संभालने का सबसे अच्छा तरीका आमतौर पर कमांड के विभिन्न -exec
विकल्पों का उपयोग करना है find
। विशेष रूप से आपको -execdir
जब भी संभव हो इसका उपयोग करने की कोशिश करनी चाहिए क्योंकि यह उस फ़ाइल की निर्देशिका के अंदर चलता है जो अन्य विकल्पों की तुलना में आमतौर पर सुरक्षित थी (बेवकूफ गलतियों को विनाशकारी होने से बचाने के अर्थ में) सुरक्षित है।
-exec
विकल्प आदेश के बाद कर रहे हैं आप के साथ चलाने के लिए चाहते हैं {}
स्थान कहां मिल द्वारा पाया फ़ाइल शामिल किया जाना चाहिए और या तो इन्हें समाप्त कर रहे हैं दर्शाने \;
प्रत्येक फ़ाइल के लिए एक बार आदेश को चलाने के लिए या +
बदलने के लिए {}
सभी मैचों के तर्कों की सूची के साथ । ध्यान दें कि अर्धविराम टर्मिनेटर बच गया है, ताकि शेल द्वारा समझा न जाए कि यह एक नया कमांड के लिए एक विभाजक है।
कहते हैं कि आपको सभी पाठ फ़ाइलें मिल रही थीं:
find -iname '*.txt' -execdir rm {} \;
यहाँ खोज मैनुअल से प्रासंगिक बिट है 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. Both of these
constructions might need to be escaped (with a ‘\’) or quoted to
protect them from expansion by the shell. See the EXAMPLES sec-
tion for examples of the use of the -exec option. The specified
command is run once for each matched file. The command is exe-
cuted in the starting directory. There are unavoidable secu-
rity problems surrounding use of the -exec action; you should
use the -execdir option instead.
-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.
-execdir command ;
-execdir command {} +
Like -exec, but the specified command is run from the subdirec-
tory containing the matched file, which is not normally the
directory in which you started find. This a much more secure
method for invoking commands, as it avoids race conditions dur-
ing resolution of the paths to the matched files. As with the
-exec action, the ‘+’ form of -execdir will build a command line
to process more than one matched file, but any given invocation
of command will only list files that exist in the same subdirec-
tory. If you use this option, you must ensure that your $PATH
environment variable does not reference ‘.’; otherwise, an
attacker can run any commands they like by leaving an appropri-
ately-named file in a directory in which you will run -execdir.
The same applies to having entries in $PATH which are empty or
which are not absolute directory names.
एक विकल्प आउटपुट को पाइप करना और बाद के कमांड के साथ पार्स करना है। ऐसा करने का एकमात्र सुरक्षित तरीका -print0
विकल्प का उपयोग करना है, जो find
परिणामों को सीमांकित के रूप में एक अशक्त चरित्र का उपयोग करने के लिए कहता है। प्राप्त आदेशों में अशक्त सीमांकित इनपुट को पहचानने की क्षमता होनी चाहिए। उदाहरण:
find /home/phunehehe -iregex '.*\.png$' -print0 | xargs -0 file
ध्यान दें कि -0
विकल्प xargs
इनपुट को शून्य सीमांकित के रूप में मानता है।
-exec
यदि आप +
इसके बजाय इसे समाप्त करते हैं, तो आप अधिक फ़ाइलों के साथ कर सकते हैं ;
। देखें कालेब का जवाब
मैं इसका उत्तर खोज रहा था और मैं इस धागे पर लड़खड़ा गया। जवाब मुझे और विचार दिया कि मैं इसे कैसे प्राप्त कर सकता हूं। मान लीजिए कि आप mediainfo
सभी JPEG फाइलों को ढूंढना चाहते हैं
यह mediainfo "
शुरुआत में और "
हर मिलान वाली फ़ाइल के अंत में होगा (जितना संभव हो सके विशेष वर्णों से बचने के लिए), इसे स्क्रिप्ट पर रखें और स्क्रिप्ट चलाएँ:
find . -name *.jpg | sed -e 's/^/mediainfo "/g;' | sed -e 's/$/"/g;' > foo.sh && sh foo.sh
यदि आप चिंतित हैं कि कुछ गलत हो सकता है, तो आप आउटपुट को किसी फ़ाइल में रीडायरेक्ट कर सकते हैं और स्क्रिप्ट चलाने से पहले टर्मिनल में परिणाम देख सकते हैं।
आप xargs
कमांड का उपयोग करके इसे पूरा कर सकते हैं । xargs
अनिवार्य रूप से अपने मानक इनपुट के प्रत्येक निर्देश के लिए एक बार एक कमांड चलाता है। इसलिए, यदि आपको .jpg
उदाहरण के लिए निर्देशिका की सभी फ़ाइलों को हटाने की आवश्यकता है, तो कमांड लाइन पर एक त्वरित तरीका है:
$ find ./ -name "*.jpg" | xargs rm
आप इसे करने के लिए बैकटिक (टैब बटन के ऊपर) का उपयोग कर सकते हैं (ध्यान दें कि यह बैकक्वाटर वर्ण है, एकल उद्धरण वर्ण नहीं):
$ rm `find ./ -name "*.jpg"`
ध्यान दें कि जिस तरह से xargs
और गोले उनके इनपुट को संसाधित करते हैं, xargs विधि केवल तभी काम करती है जब फ़ाइल नाम और निर्देशिका नामों में से कोई भी शामिल नहीं है जिसमें व्हाट्सएप या कोई भी शामिल है \"'
; backquote पद्धति केवल तभी काम करती है जब फ़ाइल नाम और निर्देशिका नामों में से कोई भी व्हाट्सएप या किसी भी शामिल नहीं है \[?*
।
find
, जिसके -exec
लिए आम तौर पर एक बेहतर समाधान है। यदि आप इन्हें वैकल्पिक के रूप में निर्दिष्ट करना चाहते हैं, तो कम से कम बताएं कि find -print0 | xargs -0
सुरक्षित फ़ाइल नाम ब्रेक हैंडलिंग के लिए कैसे उपयोग किया जाए और बैकटिक्स के बारे में सावधानी बरतने के बारे में विस्तार से बताया जाए।