load() {
	if [ -f "$1" ]; then
		. "$1"
	fi
}
app="${0##*/}"
f1="$HOME/.$app"
load "$f1"
f2="$PWD/.$app"
if [ "$f2" != "$f1" ]; then
	load "$f2"
fi
