1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 17:13:50 +02:00

base*: edit pages (#12514)

This commit is contained in:
Fazle Arefin 2024-03-17 01:11:21 +11:00 committed by GitHub
parent 57fbf00e59
commit 63cd5af6bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View file

@ -7,6 +7,10 @@
`base32 {{path/to/file}}`
- Wrap encoded output at a specific width (`0` disables wrapping):
`base32 --wrap {{0|76|...}} {{path/to/file}}`
- Decode a file:
`base32 --decode {{path/to/file}}`

View file

@ -7,6 +7,10 @@
`base64 {{path/to/file}}`
- Wrap encoded output at a specific width (`0` disables wrapping):
`base64 --wrap {{0|76|...}} {{path/to/file}}`
- Decode the base64 contents of a file and write the result to `stdout`:
`base64 --decode {{path/to/file}}`