12 lines
159 B
Bash
Executable File
12 lines
159 B
Bash
Executable File
#!/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
|