对text先MD5,再Base64,最后ECHO输出:
我不知道怎么用set写,专门输出一个txt很不爽啊…
这是使用的外部工具:
http://zhenlove.com.cn/cndos/fileup/files/md5.zip
http://zhenlove.com.cn/cndos/fileup/files/base64.zip
[ Last edited by ec2049 on 2007-1-23 at 07:46 AM ]
@echo off
color 0a
cls
set /p text="字符串:"
FOR %%b IN ("echo %text%|md5") DO (
echo %%b|base64>temp.txt
)
more temp.txt
del/a/f/s/q temp.txt
pause我不知道怎么用set写,专门输出一个txt很不爽啊…
这是使用的外部工具:
http://zhenlove.com.cn/cndos/fileup/files/md5.zip
http://zhenlove.com.cn/cndos/fileup/files/base64.zip
[ Last edited by ec2049 on 2007-1-23 at 07:46 AM ]
