English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Linux uuencode command

Linux Command Manual

The Linux uuencode command is used to restore files encoded with uuencode.

Early transmission protocols in many Unix systems could only transmit seven-bit characters and did not support binary files, such as Chinese text files which use eight bits, so they could not be transmitted completely to another machine. The uuencode command can convert binary files into seven-bit files for transmission, and then be restored on the other machine with uudecode. It is most commonly used for sending binary files via email. The encoded data with uuencode start with 'begin' and end with 'end'.

Syntax

 compress[required parameters][optional parameters][directory or file]

Parameter Description:

Required Parameters:

  • None

Select Parameters:

  • h Display Help Information
  • v Display Version Information

Online Examples

Restore Archive

# uuencode test.uud

Linux Command Manual