리눅스에 포함되서 편하군
$ base64 --help Usage: base64 [OPTION]... [FILE] Base64 encode or decode FILE, or standard input, to standard output. -d, --decode decode data -i, --ignore-garbage when decoding, ignore non-alphabet characters -w, --wrap=COLS wrap encoded lines after COLS character (default 76). Use 0 to disable line wrapping --help 이 도움말을 표시하고 끝냅니다 --version 버전 정보를 출력하고 끝냅니다 <파일>이 주어지지 않거나 - 이면 표준 입력을 읽습니다. 데이터는 RFC 3548에 서술된 방식대로 base64 알파벳으로 인코딩됩니다. 디코딩할 때 입력은 공식적인 base64 알파벳과 함께 newline 문자를 포함할 수 있습니다. 인코딩된 스트림에서 알파벳이 아닌 문자열을 복구하려면 --ignore-garbage 옵션을 이용하십시오. Report base64 bugs to bug-coreutils@gnu.org GNU coreutils 홈 페이지: <http://www.gnu.org/software/coreutils/> GNU 소프트웨어 사용에 관련된 전반적인 도움을 얻기: <http://www.gnu.org/gethelp/> Report base64 translation bugs to <http://translationproject.org/team/> For complete documentation, run: info coreutils 'base64 invocation' |
$ echo '내용들..' | base64 --decode > savename.file
'Linux' 카테고리의 다른 글
리눅스 파일 시간관련 (0) | 2017.01.01 |
---|---|
ctime mtime.. 엌?! (0) | 2016.12.31 |
리눅스 런레벨 (0) | 2016.12.12 |
yaffs2 / ext4 비교? (0) | 2016.11.04 |
dri drm ddx (0) | 2016.10.23 |