diff options
Diffstat (limited to 'encode.sh')
-rwxr-xr-x | encode.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/encode.sh b/encode.sh new file mode 100755 index 0000000..900e5ae --- /dev/null +++ b/encode.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +if [ ! "$2" ] ; then + echo $0: usage $0 infile outfile + exit 1 +fi + +openssl enc -aes-256-cbc -in "$1" -out "$2" |