aboutsummaryrefslogtreecommitdiffstats
path: root/gnupg/encrypt
blob: e91190ff18e310ef032809b4f71c50ef724eb960 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/dash
if test -z "${GPG_KEY}"; then
	printf '\033[1;34m%s\033[0m\n' 'You must export GPG_KEY with you GPG key' >&2
	exit 1
else
	for file in "$@"; do
		gpg --encrypt --sign -r "${GPG_KEY}" -u "${GPG_KEY}" < "${file}" > "${file}.crypt"
	done
	printf '\033[1;34m%s\033[0m\n' '-- Do not forget to shred. --' >&2
fi