8 lines
71 B
Bash
8 lines
71 B
Bash
|
pgrep emacs >/dev/null
|
||
|
if [ $? -eq 1 ]
|
||
|
then
|
||
|
echo 'X'
|
||
|
else
|
||
|
echo 'e+'
|
||
|
fi
|