प्रसंस्करण से पहले वर्णानुक्रम में फ़ाइलों को क्रमबद्ध करें


12

मैं कमांड का उपयोग करता हूं

find . -type f -exec sha256sum {} \; > sha256SumOutput

एक फ़ोल्डर पदानुक्रम में हर फ़ाइल को हैश करने के लिए। दुर्भाग्य से, sha256sumफ़ाइल नाम से नहीं मिलता हैfind वर्णमाला ओडर । इसे कैसे सुधारा जा सकता है?

मैं उन्हें हैशेड करने से पहले उन्हें ऑर्डर देना चाहता हूं ताकि वे वर्णमाला क्रम में हैशेड हो (इसका एक कारण है)।


फ़ाइलें खोजें, sortसूची को क्रमबद्ध करने के लिए पाइप और sha256sum पर पाइप
Sergiy Kolodyazhnyy

अल्फ़ान्यूमेरिक प्रकार।
UTF-8

जवाबों:


16

कुछ पाइप और का उपयोग कर sort

find . -type f -print0 | sort -z | xargs -r0 sha256sum > sha256SumOutput

व्याख्या

से man find

   -print0
        True; print the full file name on the standard output, followed
        by a null character (instead of the newline character that -print
        uses). This allows file names that contain newlines or other
        types of white space to be  correctly  interpreted by programs
        that process the find output.  This option corresponds to the -0
        option of xargs.

से man sort

   -z, --zero-terminated
        line delimiter is NUL, not newline

से man xargs

   -0   
        Input items are terminated by a null character instead of by
        whitespace, and the quotes and backslash are not special (every
        character is taken literally).  Disables the end of file string,
        which is treated like any  other  argument. Useful when input
        items might contain white space, quote marks, or backslashes.
        The GNU find -print0 option produces input suitable for this mode.

उदाहरण

% ls -laog
total 4288
drwxrwxr-x  2 4329472 Aug 17 08:20 .
drwx------ 57   20480 Aug 17 08:20 ..
-rw-rw-r--  1       0 Aug 17 08:15 a
-rw-rw-r--  1       0 Aug 17 08:15 a b
-rw-rw-r--  1       0 Aug 17 08:15 b
-rw-rw-r--  1       0 Aug 17 08:15 c

% find -type f -print0 | sort -z | xargs -r0 sha256sum                  
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855  ./a
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855  ./a b
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855  ./b
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855  ./c

पहले कॉलम के मान समान हैं, क्योंकि फाइलों में मेरे परीक्षण की कोई सामग्री नहीं है।


1
अरे हाँ!
न्यूलाइन

1

तुम बस से अपने उत्पादन पाइप में सक्षम होना चाहिए findकरने के लिए sort


हाँ, लेकिन फिर कोई -execस्विच नहीं है ।
UTF-8

2
मेरा मानना findहै कि आउटपुट को वर्णानुक्रम में लाने का कोई तरीका नहीं है , लेकिन sortफिर पाइपिंग करना और फिर xargsअपेक्षित आउटपुट देना होगा। find . -type f | sort | xargs sha256sum। हालाँकि, यह उपनिर्देशिकाओं के साथ समस्या होगी ..
user3591723

उप निर्देशिकाओं से निपटने के लिए find . -type f | awk -F/ '{print $NF, $0}' | sort | awk '{print $2}' | xargs sha256sum
हैकी

यह त्रुटि प्रिंट करता है xargs: unmatched single quote; by default quotes are special to xargs unless you use the -0 option sha256sum: invalid option -- 'l' Try 'sha256sum --help' for more information.
UTF-8

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