mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-11 12:47:23 +00:00
Update cheatsheets
This commit is contained in:
21
uuencode
Normal file
21
uuencode
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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 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 write the result to a file:
|
||||
|
||||
`uuencode -m -o {{path/to/output_file}} {{path/to/input_file}} {{output_file_name_after_decoding}}`
|
||||
Reference in New Issue
Block a user