ファイルごとのmd5チェックサムを計算して、ファイルに出力するスクリプト。ファイルコピー時にファイルが壊れていないかの調査に使える??
# !/bin/sh
for i in `find ./ -type f`
do
md5sum i >> file_name.txt
done
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
ファイルごとのmd5チェックサムを計算して、ファイルに出力するスクリプト。ファイルコピー時にファイルが壊れていないかの調査に使える??
# !/bin/sh
for i in `find ./ -type f`
do
md5sum i >> file_name.txt
done
Register as a new user and use Qiita more conveniently
Go to list of users who liked