12 lines
159 B
Bash
12 lines
159 B
Bash
|
#!/bin/zsh
|
||
|
|
||
|
is_running=`ps aux| grep gpg-agent| grep -v grep`
|
||
|
|
||
|
if [ $is_running ] ; then
|
||
|
echo "gpg is running";
|
||
|
else
|
||
|
env=`./run_gpg.sh`
|
||
|
source $env
|
||
|
fi
|
||
|
mutt
|