在 Linux 上我可以执行以下操作:
echo ${ANDROID_KEYSTORE} | base64 -di > android/keystores/staging.keystore
但在 MacOS 上,相同的命令会给出以下结果:
base64: option requires an argument -- i
Usage: base64 [-hvDd] [-b num] [-i in_file] [-o out_file]
-h, --help display this message
-Dd, --decode decodes input
-b, --break break encoded string into num character lines
-i, --input input file (default: "-" for stdin)
-o, --output output file (default: "-" for stdout)
我曾尝试用 替换-di
,--decode --input
但没有帮助。
- 我该如何修复 iOS 命令?
- 是否有一个命令可以在 Linux(Debian/Ubuntu)和 MacOS 上运行?