9 lines
149 B
Plaintext
9 lines
149 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ $# -lt 2 ]; then
|
||
|
echo "missing arguments {in_encrypted} {out_decrypted}" && exit;
|
||
|
fi;
|
||
|
|
||
|
|
||
|
openssl enc -aes-256-cbc -d -in $1 -out $2;
|