mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
uuencode: add page (#5857)
This commit is contained in:
parent
e38aa65c6b
commit
883412726a
1 changed files with 16 additions and 0 deletions
16
pages/common/uuencode.md
Normal file
16
pages/common/uuencode.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# uuencode
|
||||
|
||||
> Encode binary files into ASCII for transport via mediums that only support simple ASCII encoding.
|
||||
> More information: <https://manned.org/uuencode>.
|
||||
|
||||
- Encode a file and print the result to stdout:
|
||||
|
||||
`uuencode {{path/to/input_file}} {{output_file_name_after_decoding}}`
|
||||
|
||||
- Encode a file and and write the result to a file:
|
||||
|
||||
`uuencode -o {{path/to/output_file}} {{path/to/input_file}} {{output_file_name_after_decoding}}`
|
||||
|
||||
- Encode a file using Base64 instead of the default uuencode encoding and and write the result to a file:
|
||||
|
||||
`uuencode -m -o {{path/to/output_file}} {{path/to/input_file}} {{output_file_name_after_decoding}}`
|
Loading…
Add table
Reference in a new issue