How can I generate one text-file containing all sha1 hashes of all files on a dvd with many folders and subfolders?
Asked
Active
Viewed 1,530 times
How can I generate one text-file containing all sha1 hashes of all files on a dvd with many folders and subfolders?
'{}' \;
work – astrob0t Nov 09 '14 at 01:30find
substitutes the files it finds into commands. I've actually switched out{} \;
for{} +
. Instead of runningsha1sum file1; sha1sum file2 ...
it runssha1sum file1 file2 ...
. Only works when the command can take multiple files like that but makes things faster. – Oli Nov 09 '14 at 01:52