2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/crypt
2017-07-17 21:13:45 +00:00

9 lines
204 B
Plaintext

# crypt (Bash-Snippets)
# A wrapper around openssl that facilitates encrypting and decrypting files
# Encrypt a file
crypt -e fileToEncrypt outputFile
# Decrypt a file
crypt -d fileToDecrypt outputFile