标签:shell md5
#!/bin/bash
for n in {1970..2000}
do
for u in {01..12}
do
for m in {01..31}
do
if [ `echo -n $n$u$m|md5sum|awk ‘{print $1}‘` == $1 ]
then
echo "$n$u$m" IS
exit
else
echo $n$u$m NO
fi
done
done
done本文出自 “10886311” 博客,请务必保留此出处http://10896311.blog.51cto.com/10886311/1721930
标签:shell md5
原文地址:http://10896311.blog.51cto.com/10886311/1721930