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


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

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 VGVzdEJhc2U..


원문링크 : [Linux] 커맨드라인(Command Line)으로 Base64 복호화