shell echo -n md5sum使用方法

Posted zhzhang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell echo -n md5sum使用方法相关的知识,希望对你有一定的参考价值。

#!/bin/bash
mysql=mysql -u*** -p*** -hws5 account
tmp="tmp"
resultsource="resultsource"
resultdest="resultdest"
echo "select user_id,phone_num,email from user_accounts where length(user_id) = 11 limit 1"|${MYSQL} > ${tmp}
sed 1d ${tmp} > ${resultsource}
> ${resultdest} 
while read user_id phone_num email
do
  echo ${user_id} `echo ROKID${phone_num}ACCOUNT`
  echo -n ROKID${phone_num}ACCOUNT|md5sum|cut -d" " -f 1|tr [a-z] [A-Z]
  echo ${user_id} `echo -n ROKID${phone_num}ACCOUNT|md5sum|cut -d" " -f 1|tr [a-z] [A-Z]` >> ${resultdest}
done < ${resultsource}

#while read user_id phone_num_md5 
#do 
#  echo "update user_accounts set phone_num = \"${phone_num_md5}\" where user_id = \"${user_id}\"" | $MYSQL 
#done < ${resultdest}

上面红色加粗的语句,为正确的md5sum加密方法(特别注意前面echo -n 选项)

 PS:MAC下在文件中执行上面红色加粗的选项,始终不能去掉字符串后面的回车符。

 

可通过xxd filename

或者od -c filename 查看是否有回车符

 

未完待续。。。

以上是关于shell echo -n md5sum使用方法的主要内容,如果未能解决你的问题,请参考以下文章

shell系列生成随机数的方法

shell脚本

Shell脚本对Linux进行文件校验

Shell百宝箱(后续会不断更新)

shell脚本一一项目3

Shell脚本:批量添加用户,并设置随机字符为密码