Criptare e Zippare
Copiare solo cartella Andare nella directory con cd Directory Poi zip -r nuova.zip nomeCartella
DECOMPRIMERE unzip filezip.zip
Copiare anche il contenuto delle cartelle
zip -r Nuovo.zip /Users/tia/Desktop/icona.iconset
Zip con password
zip -e nomefile.zip(in uscita) nomeFile.ext(in entrata)
# encrypt file.txt to file.enc using 256-bit AES in CBC mode openssl enc -aes-256-cbc -salt -in file.txt -out file.enc
# the same, only the output is base64 encoded for, e.g., e-mail openssl enc -aes-256-cbc -a -salt -in file.txt -out file.enc
# decrypt binary file.enc openssl enc -d -aes-256-cbc -in file.enc -out file.txt
# decrypt base64-encoded version openssl enc -d -aes-256-cbc -a -in file.enc -out file.txt