h46incon / AliDDNSBash

阿里云域名解析动态更新(DDNS)的 Shell 脚本
MIT License
250 stars 125 forks source link

OpenSSL 1.1.0版本获取随机数命令变化 #3

Closed debuggerx01 closed 6 years ago

debuggerx01 commented 6 years ago

你好,我在OpenSSL1.1.0版本上运行脚本时报错,发现是脚本第27行 rand_num=$(openssl rand 16 -hex) 这句的返回结果为"Extra arguments given. rand: Use -help for summary." 将其修改为rand_num=$(openssl rand -hex 16),也就是调换了下参数顺序后则可以继续正常运行。

h46incon commented 6 years ago

感谢告知,已修复