बैश कमांड वर्बोज़ आउटपुट पाते हैं


46

वहाँ है findकि यह क्या कर रहा है (क्रिया मोड) उत्पादन करने के लिए बैश कमांड बताने का तरीका है ?

उदाहरण के लिए कमांड के लिए: find /media/1Tb/videos -maxdepth 1 -type d -mtime +7 -exec rm -rf {} \;आउटपुट के लिए:

Found /media/1Tb/videos/102, executing rm -rf /media/1Tb/videos/102
...

जवाबों:


62

आप के साथ कुछ मनगढ़ंत कर सकते हैं -printf, लेकिन सबसे आसान -printअंत में निपटने के लिए है । यह दिखाएगा कि क्या सफलतापूर्वक हटा दिया गया था।


इस उत्तर का उपयोग करते समय किसी भी चीज़ पर लागू किया जा सकता है find, इसलिए अंगूठे
एलेक्स

मेरा findप्यार सिर्फ एक और थोड़ा बढ़ गया। धन्यवाद :)
दरगाह ठीक

8
मेरे लिए, "-exec rm -vf {} \;" बेहतर काम किया।
djangofan

1
अच्छा! -डेली के साथ भी काम करता है: find -L . -type l -delete -print
runlevel0

19

कैसे के बारे में सिर्फ rm -vfक्रिया rm उत्पादन के लिए उपयोग कर रहा है।

$ touch file1 file2 file3
$ find . -name "file?" -exec rm -vf {} \;
removed `./file2'
removed `./file3'
removed `./file1'

के लिए क्रिया विकल्प rmअच्छा है, लेकिन अगर मैंने इसे किसी और चीज़ से बदल दिया है, तो मैं अब नहीं देख सकता कि फाइलों पर क्या काम किया जा रहा है (जब तक कि मैं echoअंदर उपयोग न करूँ -exec)
एलेक्स 10

8

एक विकल्प यह है कि आज्ञाओं को निष्पादित किया जाए sh -x:

$ find . -type f -print0 | xargs -0 -n1 echo rm | sh -x
+ rm ./file1
+ rm ./file2
+ rm ./file3

shell debugमोड स्पष्ट हो जाएगा कि क्या हुआ है। धन्यवाद
sdkks

1

ऐसा भी है find -D xxxxजो कुछ मामलों में मदद कर सकता है।

 $ find -D help
 Valid arguments for -D:
 help       Explain the various -D options
 tree       Display the expression tree
 search     Navigate the directory tree verbosely
 stat       Trace calls to stat(2) and lstat(2)
 rates      Indicate how often each predicate succeeded
 opt        Show diagnostic information relating to optimisation
 exec       Show diagnostic information relating to -exec, -execdir, -ok and -okdir

नीचे दो उदाहरण दिए गए हैं find -D search:

आरएचईएल 6.3 ( findv4.4) का उपयोग करना :

$ mkdir -p aa/bb
$ touch aa/11 aa/22 aa/33 aa/bb/44 aa/bb/55
$ find -D search aa -type f -delete
consider_visiting: fts_info=FTS_D , fts_level= 0, prev_depth=-2147483648 fts_path=`aa', fts_accpath=`aa'
consider_visiting: fts_info=FTS_D , fts_level= 1, prev_depth=0 fts_path=`aa/bb', fts_accpath=`bb'
consider_visiting: fts_info=FTS_NSOK, fts_level= 2, prev_depth=1 fts_path=`aa/bb/55', fts_accpath=`55'
consider_visiting: fts_info=FTS_NSOK, fts_level= 2, prev_depth=2 fts_path=`aa/bb/44', fts_accpath=`44'
consider_visiting: fts_info=FTS_DP, fts_level= 1, prev_depth=2 fts_path=`aa/bb', fts_accpath=`bb'
consider_visiting: fts_info=FTS_NSOK, fts_level= 1, prev_depth=1 fts_path=`aa/22', fts_accpath=`22'
consider_visiting: fts_info=FTS_NSOK, fts_level= 1, prev_depth=1 fts_path=`aa/33', fts_accpath=`33'
consider_visiting: fts_info=FTS_NSOK, fts_level= 1, prev_depth=1 fts_path=`aa/11', fts_accpath=`11'
consider_visiting: fts_info=FTS_DP, fts_level= 0, prev_depth=1 fts_path=`aa', fts_accpath=`aa'
$ find --version
find (GNU findutils) 4.4.2
Copyright (C) 2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Eric B. Decker, James Youngman, and Kevin Dalley.
Built using GNU gnulib version e5573b1bad88bfabcda181b9e0125fb0c52b7d3b
Features enabled: D_TYPE O_NOFOLLOW(enabled) LEAF_OPTIMISATION SELINUX FTS() CBO(level=0)

साइगविन 1.7 ( find4.5) का उपयोग करना :

$ mkdir -p aa/bb
$ touch aa/11 aa/22 aa/33 aa/bb/44 aa/bb/55
$ find -D search aa -type f -delete
consider_visiting (early): 'aa': fts_info=FTS_D , fts_level= 0, prev_depth=-2147483648 fts_path='aa', fts_accpath='aa'
consider_visiting (late): 'aa': fts_info=FTS_D , isdir=1 ignore=1 have_stat=1 have_type=1
consider_visiting (early): 'aa/11': fts_info=FTS_NSOK, fts_level= 1, prev_depth=0 fts_path='aa/11', fts_accpath='11'
consider_visiting (late): 'aa/11': fts_info=FTS_NSOK, isdir=0 ignore=0 have_stat=0 have_type=1
consider_visiting (early): 'aa/22': fts_info=FTS_NSOK, fts_level= 1, prev_depth=1 fts_path='aa/22', fts_accpath='22'
consider_visiting (late): 'aa/22': fts_info=FTS_NSOK, isdir=0 ignore=0 have_stat=0 have_type=1
consider_visiting (early): 'aa/33': fts_info=FTS_NSOK, fts_level= 1, prev_depth=1 fts_path='aa/33', fts_accpath='33'
consider_visiting (late): 'aa/33': fts_info=FTS_NSOK, isdir=0 ignore=0 have_stat=0 have_type=1
consider_visiting (early): 'aa/bb': fts_info=FTS_D , fts_level= 1, prev_depth=1 fts_path='aa/bb', fts_accpath='bb'
consider_visiting (late): 'aa/bb': fts_info=FTS_D , isdir=1 ignore=1 have_stat=1 have_type=1
consider_visiting (early): 'aa/bb/44': fts_info=FTS_NSOK, fts_level= 2, prev_depth=1 fts_path='aa/bb/44', fts_accpath='44'
consider_visiting (late): 'aa/bb/44': fts_info=FTS_NSOK, isdir=0 ignore=0 have_stat=0 have_type=1
consider_visiting (early): 'aa/bb/55': fts_info=FTS_NSOK, fts_level= 2, prev_depth=2 fts_path='aa/bb/55', fts_accpath='55'
consider_visiting (late): 'aa/bb/55': fts_info=FTS_NSOK, isdir=0 ignore=0 have_stat=0 have_type=1
consider_visiting (early): 'aa/bb': fts_info=FTS_DP, fts_level= 1, prev_depth=2 fts_path='aa/bb', fts_accpath='bb'
consider_visiting (late): 'aa/bb': fts_info=FTS_DP, isdir=1 ignore=0 have_stat=1 have_type=1
consider_visiting (early): 'aa': fts_info=FTS_DP, fts_level= 0, prev_depth=1 fts_path='aa', fts_accpath='aa'
consider_visiting (late): 'aa': fts_info=FTS_DP, isdir=1 ignore=0 have_stat=1 have_type=1
$ find --version
find (GNU findutils) 4.5.11
Packaged by Cygwin (4.5.11-1)
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Eric B. Decker, James Youngman, and Kevin Dalley.
Features enabled: D_TYPE O_NOFOLLOW(enabled) LEAF_OPTIMISATION FTS(FTS_CWDFD) CBO(level=2)

1

@ ह्लावदव का उत्तर मेरे लिए पर्याप्त था लेकिन मैंने अपने उपयोग के लिए कुछ संशोधन किए

find . -name 'application*.yml' -print0 | xargs -0 -I %% bash -c 'rm -v "$1"' -- "%%"

व्याख्या

  1. खोज
  2. pattern
  3. प्रिंट nullअलग, महत्वपूर्ण यदि आपके पास रिक्त स्थान या असामान्य वर्ण के साथ फ़ाइल नाम है
  4. xargsnullअलग से पढ़ें , प्रत्येक रिकॉर्ड प्लेसहोल्डर को सेट करें %% यह हर बार यह सुनिश्चित करता है कि यह केवल एक तर्क का उपयोग करता है
  5. bash कमांड, एक-लाइनर, कुछ भी अंदर जाता है, एकल उद्धृत होना चाहिए '
  6. --इसके बाद मैं जो कुछ भी करता हूं उसका अर्थ xargsया bashविकल्प नहीं है, बल्कि मेरे एक-लाइनर स्क्रिप्ट के लिए स्थितीय मापदंड हैं
  7. प्लेसहोल्डर को इसे उद्धृत करके एकल तर्क के रूप में दिया जाता है, एकल या दोहरे उद्धरण से कोई फर्क नहीं पड़ता। यदि आप दोहरे उद्धरण चिह्नों का उपयोग करते हैं, तो आप शेल चर भी सम्मिलित कर सकते हैं।
  8. bashस्क्रिप्ट के अंदर , आप स्थिति तर्क संख्या # 1 के %%रूप में पहुंच सकते हैं$1

नोट: आप किसी %%भी चीज़ से बदल सकते हैं , बस यह सुनिश्चित कर लें कि आपको किसी प्लेसहोल्डर के अलावा किसी और चीज़ के लिए इसका इस्तेमाल करने की ज़रूरत नहीं है। डॉलर का उपयोग करना $या @अच्छा नहीं हो सकता है, जब तक कि यह डबल है @की तरह @@

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