Situatie
Linux provides Zip command to work with a file like compressing the file and decompressing with a password. It’s not come with built-in you need to install from an external source. The Zip command has two different utility(zip and unzip). zip is used for compressing the file and unzip is used for decompressing the file.
Solutie
Pasi de urmat
1. Use this command in Ubuntu, Debian, and Linux mint. sudo apt install zip unzip
2. Check your file(output_data.zip) is created with password protected.
ls
You can easily unzip the file with these commands.
unzip YOUR_FILE.zip
While running this command it will ask the password for a decompressing zip file.
3. Example:
unzip output_data.zip
Leave A Comment?