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
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}}`