risfeng / aliyun-ddns-shell

阿里云域名解析动态更新IP Shell脚本
MIT License
331 stars 102 forks source link

兼容arm小盒子 #11

Open yamgxu opened 3 years ago

yamgxu commented 3 years ago

我遇到了两个问题 第一个 echo -ne "$2" | openssl dgst -$1 -hmac "$3" -binary | base64 我的小盒子没有base64 也不好装 改成如下 echo -ne "$2" | openssl dgst -$1 -hmac "$3" -binary | openssl base64

第二个 for((i=1;i<=$var_check_online_retry_times;i++)); do 我的shell 环境不支持 这个for语法改成如下 for i in {1..3};do

risfeng commented 3 years ago

推送一个arm版本上来呗。