summaryrefslogtreecommitdiff
path: root/Scripts/checkIfActive.sh
blob: ecf40d1a5ceeaa1f4e799731d433481e9bc47e08 (plain)
1
2
3
4
5
if pgrep "$1" > /dev/null; then
	echo Active
else
	echo Inactive
fi