私が持っています md5sum
ファイルがあり、システムのどこにあるのかわかりません。 find
に基づいてファイルを識別する簡単なオプションはありますかmd5
?または、小さなスクリプトを開発する必要がありますか?
GNUツールなしでAIX 6で作業しています。
find
の使用:
find /tmp/ -type f -exec md5sum {} + | grep '^file_md5sum_to_match'
/
を検索する場合は、/proc
および/sys
を除外できます。次のfind
コマンドの例を参照してください。
また、いくつかのテストを行ったところ、find
は時間がかかり、CPUが少なくなり、RAM where Rubyスクリプトは時間がかかりますが、CPUが多くなり羊
テスト結果
検索
[root@dc1 ~]# time find / -type f -not -path "/proc/*" -not -path "/sys/*" -exec md5sum {} + | grep '^304a5fa2727ff9e6e101696a16cb0fc5'
304a5fa2727ff9e6e101696a16cb0fc5 /tmp/file1
real 6m20.113s
user 0m5.469s
sys 0m24.964s
-Prune
で検索
[root@dc1 ~]# time find / \( -path /proc -o -path /sys \) -Prune -o -type f -exec md5sum {} + | grep '^304a5fa2727ff9e6e101696a16cb0fc5'
304a5fa2727ff9e6e101696a16cb0fc5 /tmp/file1
real 6m45.539s
user 0m5.758s
sys 0m25.107s
Rubyスクリプト
[root@dc1 ~]# time Ruby findm.rb
File Found at: /tmp/file1
real 1m3.065s
user 0m2.231s
sys 0m20.706s
スクリプトソリューション
#!/usr/bin/Ruby -w
require 'find'
require 'digest/md5'
file_md5sum_to_match = [ '304a5fa2727ff9e6e101696a16cb0fc5',
'0ce6742445e7f4eae3d32b35159af982' ]
Find.find('/') do |f|
next if /(^\.|^\/proc|^\/sys)/.match(f) # skip
next unless File.file?(f)
begin
md5sum = Digest::MD5.hexdigest(File.read(f))
rescue
puts "Error reading #{f} --- MD5 hash not computed."
end
if file_md5sum_to_match.include?(md5sum)
puts "File Found at: #{f}"
file_md5sum_to_match.delete(md5sum)
end
file_md5sum_to_match.empty? && exit # if array empty then exit
end
より速く機能する確率に基づくBash Scriptソリューション
#!/bin/bash
[[ -z $1 ]] && read -p "Enter MD5SUM to search file: " md5 || md5=$1
check_in=( '/home' '/opt' '/tmp' '/etc' '/var' '/usr' )
last_find_cmd="find / \\( -path /proc -o -path /sys ${check_in[@]/\//-o -path /} \\) -Prune -o -type f -exec md5sum {} +"
last_element=${#check_in}
echo "Please wait... searching for file"
for d in ${!check_in[@]}
do
[[ $d == $last_element ]] && eval $last_find_cmd | grep "^${md5}" && exit
find ${check_in[$d]} -type f -exec md5sum {} + | grep "^${md5}" && exit
done
テスト結果
[root@dc1 /]# time bash find.sh 304a5fa2727ff9e6e101696a16cb0fc5
Please wait... searching for file
304a5fa2727ff9e6e101696a16cb0fc5 /var/log/file1
real 0m21.067s
user 0m1.947s
sys 0m2.594s
とにかくgnu findをインストールすることにした場合(そして、コメントの1つに興味を示したため)、次のようなことを試すことができます。
find / -type f \( -exec checkmd5 {} YOURMD5SUM \; -o -quit \)
とcheckmd5
引数として取得するファイルのmd5sumを2番目の引数と比較し、一致する場合は名前を出力し、(それ以外の場合は0ではなく)1で終了します。 -quit
が見つかるとfind
は停止します。
checkmd5
(未検証):
#!/bin/bash
md=$(md5sum $1 | cut -d' ' -f1)
if [ $md == $2 ] ; then
echo $1
exit 1
fi
exit 0