른록노트
[CentOS7] base64 인코딩, 디코딩 본문
@ 문자열 처리
-인코딩
echo 'hello world' | base64
-디코딩
echo aGVsbG8gd29ybGQK | base64 --decode
@ 파일 처리
-인코딩
base64 1.txt
-디코딩
base64 -di 1.txt
반응형
Comments
@ 문자열 처리
-인코딩
echo 'hello world' | base64
-디코딩
echo aGVsbG8gd29ybGQK | base64 --decode
@ 파일 처리
-인코딩
base64 1.txt
-디코딩
base64 -di 1.txt