This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.local/bin/crypt

11 lines
313 B
Bash
Executable File

#!/bin/sh
if [ "$1" = "-e" ]; then
openssl enc -aes-256-cbc -salt -a -in "$2" -out "$3" || { echo "File not found"; return 1; }
elif [ "$1" = "-d" ]; then
openssl enc -aes-256-cbc -d -a -in "$2" -out "$3" || { echo "File not found"; return 1; }
else
echo "Wrong 1st argument. Need -d or -e."
return 1
fi