প্রক্রিয়া করার আগে ফাইলগুলি বর্ণমালা অনুসারে বাছাই করুন


12

আমি কমান্ডটি ব্যবহার করি

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

ফোল্ডার স্তরক্রমের প্রতিটি ফাইল হ্যাশ করতে। দুর্ভাগ্যক্রমে, বর্ণানুক্রমক ওডার sha256sumথেকে ফাইলের নাম পান findনা। কিভাবে এই সংশোধন করা যেতে পারে?

আমি তাদের হ্যাশ করার আগে তাদের আদেশ করতে চাই যাতে তারা বর্ণানুক্রমিকভাবে হ্যাশ হয় (এর একটি কারণ আছে)।


ফাইলগুলিতে পাইপ খুঁজে sortsha256sum করার তালিকা বাছাই, এবং নল
Sergiy Kolodyazhnyy

বর্ণানুক্রমিক বাছাই।
ইউটিএফ-8

ইতিমধ্যে unix.stackexchange.com/questions/34325/… এ উত্তর দেওয়া হয়েছে ।
সাম্পাব্লুকুপার

উত্তর:


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সুইচ নেই।
ইউটিএফ-8

2
findআউটপুট বর্ণমালা করার কোনও উপায় আছে বলে আমি বিশ্বাস করি না , তবে পাইপিং করা sortএবং তারপরে ব্যবহার xargsকরে প্রত্যাশিত আউটপুট দেয়। find . -type f | sort | xargs sha256sum। যদিও এতে উপ-ডিরেক্টরিতে সমস্যা থাকবে ..
ব্যবহারকারীর 3591723

সাব ডিরেক্টরি মোকাবেলা করার hacky উপায় হবেfind . -type f | awk -F/ '{print $NF, $0}' | sort | awk '{print $2}' | xargs sha256sum
user3591723

এটি ত্রুটিটি মুদ্রণ করে 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.
ইউটিএফ-8

আমার অনুমান আপনার ফাইলগুলির মধ্যে
একটির
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.