mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-22 21:51:26 +00:00
Update cheatsheets
This commit is contained in:
10
tldr/base32
10
tldr/base32
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# base32
|
||||
|
||||
> Encode or decode file or `stdin` to/from Base32, to `stdout`.
|
||||
> More information: <https://www.gnu.org/software/coreutils/base32>.
|
||||
> More information: <https://manned.org/base32>.
|
||||
|
||||
- Encode a file:
|
||||
|
||||
@@ -14,16 +14,16 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Wrap encoded output at a specific width (`0` disables wrapping):
|
||||
|
||||
`base32 --wrap {{0|76|...}} {{path/to/file}}`
|
||||
`base32 {{-w|--wrap}} {{0|76|...}} {{path/to/file}}`
|
||||
|
||||
- Decode a file:
|
||||
|
||||
`base32 --decode {{path/to/file}}`
|
||||
`base32 {{-d|--decode}} {{path/to/file}}`
|
||||
|
||||
- Encode from `stdin`:
|
||||
|
||||
`{{somecommand}} | base32`
|
||||
`{{command}} | base32`
|
||||
|
||||
- Decode from `stdin`:
|
||||
|
||||
`{{somecommand}} | base32 --decode`
|
||||
`{{command}} | base32 {{-d|--decode}}`
|
||||
|
||||
Reference in New Issue
Block a user