This commit is contained in:
monlor
2020-04-14 10:34:12 +08:00
5 changed files with 3 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -3,5 +3,5 @@ appname="mixbox"
needver=""
supports="linux_arm,linux_mips,linux_x86_64"
appinfo="一款支持多平台多架构的Shell工具箱"
newinfo="修复mixbox命令错误"
version="0.1.9.6"
newinfo="修复base64命令段错误,升级后需要手工删除/etc/mixbox/bin/base64*"
version="0.1.9.7"

View File

@@ -40,7 +40,7 @@ base_encode() {
if [ -z "${1}" ]; then
echo -n ""
else
echo -n "$*" | base64
echo -n "$*" | base64 | tr -d '\n'
fi
}