GNU Privacy Guard

A few tips and tricks. Nothing much here yet.

set this as your crontab to update the sigs on keys in the keyserver server:

02 05 */3 * * gpg --batch --refresh-keys >/dev/null 2>&1; gpg --batch --check-trustdb >/dev/null 2>&1

The command line gpg is a lot easier to use with command completion. Enable it for bash like this:
# enable bash completion in interactive shells
if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
fi
With command completion, type "gpg --" and then the tab key to see all the options.