This commit is contained in:
Feng Yu
2020-04-11 22:04:01 +08:00
parent 8169896e55
commit 580c2fdf0a
5 changed files with 3 additions and 3 deletions

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
}