본문 바로가기
+ OS/Linux & Unix

[Linux] 커맨드라인(Command Line)으로 Base64 복호화

by :: Teacher :: 2017. 1. 21.
728x90
반응형

Linux에서 특정 복호화툴(Tool)이 아닌 커맨드라인(Command Line)모드를 통한 Base64 복호화를 해보도록 하자

1. 사용 옵션

$ base64 --help

Usage: base64 [-dhvD] [-b num] [-i in_file] [-o out_file]

  -h, --help     display this message

  -D, --decode   decodes input

  -b, --break    break encoded string into num character lines

  -i, --input    input file (default: "-" for stdin)

  -o, --output   output file (default: "-" for stdout)

2. 사용 예제

$ echo VGVzdEJhc2U2NA== | base64 --decode

TestBase64

728x90
반응형

댓글


loading