Linux uuencode Command
-- Learning is not just about technology, but also about dreams!
- Home
- HTML
- JavaScript
- CSS
- Vue
- React
- Python3
- Java
- C
- C++
- C#
- AI
- Go
- SQL
- Linux
- VS Code
- Bootstrap
- Git
- Local Bookmarks
Linux Tutorial
Linux TutorialLinux IntroductionLinux InstallationLinux Cloud ServerInstall Linux with WSLLinux System Boot ProcessLinux System Directory StructureLinux Forgotten Password SolutionLinux Remote LoginLinux File Basic AttributesLinux File and Directory ManagementLinux User and User Group ManagementLinux Disk ManagementLinux vi/vimlinux yum CommandLinux apt Command
Shell Tutorial
Shell TutorialShell VariablesShell Passing ArgumentsShell ArrayShell OperatorsShell echo CommandShell printf CommandShell test CommandShell Flow ControlShell FunctionsShell Input/Output RedirectionShell File Inclusion
Linux Reference Manual
Linux Command ManualNginx Installation and ConfigurationMySQL Installation and ConfigurationLinux Quiz
Nginx Installation and Configuration
Explore Further
Scripts
Software
Programming
Network Design and Development
Development Tools
Web Service
Programming Languages
Computer Science
Scripting Languages
Network Services
Linux uuencode Command
The Linux uuencode command is used to convert binary files into ASCII text format so they can be sent via email or other transmission methods.
This conversion allows files to be sent through text-only channels (like email) and can be restored to their original binary form at the receiving end using the uudecode command.
Syntax
uuencode
Parameter Description:
input-file: The binary file to be converted.output-file: The converted filename, which can also be the attachment name in an email.
To decode the file:
uudecode <encoded_filename>
Here, <encoded_filename> is the name of the encoded file.
Example
Suppose you have a binary file named example.bin and you want to convert it to ASCII format and save it to a file named encoded.txt:
uuencode example.bin example.bin > encoded.txt
This command will convert the example.bin file into ASCII encoding and redirect the output to the encoded.txt file.
Decoding
You can use uudecode to decode this file:
uudecode encoded.txt
This command will read the encoded.txt file and generate the original example.bin file.
YouTip