2021-01-12 08:27:59 -05:00
|
|
|
# base32
|
|
|
|
|
|
|
|
> 파일 또는 표준 입력을 Base32와 표준 출력으로 인코딩하거나 디코딩함.
|
2021-03-30 09:11:31 +02:00
|
|
|
> 더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/base32-invocation.html>.
|
2021-01-12 08:27:59 -05:00
|
|
|
|
|
|
|
- 파일 인코딩:
|
|
|
|
|
|
|
|
`base32 {{filename}}`
|
|
|
|
|
|
|
|
- 파일 디코딩:
|
|
|
|
|
2021-03-07 23:58:11 +01:00
|
|
|
`base32 --decode {{filename}}`
|
2021-01-12 08:27:59 -05:00
|
|
|
|
2021-01-31 14:05:18 -03:00
|
|
|
- stdin에서 인코딩:
|
2021-01-12 08:27:59 -05:00
|
|
|
|
|
|
|
`{{somecommand}} | base32`
|
|
|
|
|
2021-01-31 14:05:18 -03:00
|
|
|
- stdin에서 디코딩:
|
2021-01-12 08:27:59 -05:00
|
|
|
|
2021-03-07 23:58:11 +01:00
|
|
|
`{{somecommand}} | base32 --decode`
|