mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-03 15:40:17 +00:00
9 lines
204 B
Plaintext
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
|