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