Password Protect Tar.gz File Fixed <2027>
If you need to regularly back up a directory with a password, create a shell script:
openssl enc -aes-256-cbc -salt -in audit_report.tar.gz -out audit_report.enc password protect tar.gz file
tar -czvf - folder_name | openssl enc -aes-256-cbc -salt -out archive.tar.gz.enc Use code with caution. Copied to clipboard If you need to regularly back up a