MacのターミナルでExcelファイルとbase64のエンコード/デコード変換
Macのターミナルで、Excelファイルをbase64にエンコードしたり、base64をデコードしてExcelファイルを生成する方法を残しておきます。
Excelファイル → base64
base64 -i template.xlsx [-o output.txt]
base64 -i template.xlsx [-o output.txt]
-oオプションを付けない場合は、base64がターミナル上に出力されます。
base64 → Excelファイル
echo "BASE_64_STRING" | base64 --decode > template.xlsx
echo "BASE_64_STRING" | base64 --decode > template.xlsx
Author And Source
この問題について(MacのターミナルでExcelファイルとbase64のエンコード/デコード変換), 我々は、より多くの情報をここで見つけました https://qiita.com/twbiz/items/b59598c3a7b8055c21e2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .