Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env bash
- ####--------------------------------####
- #--# Author: by uriid1 #--#
- #--# License: GNU GPL #--#
- #--# Telegram: @foxdacam #--#
- #--# Mail: appdurov@gmail.com #--#
- ####--------------------------------####
- # Check pidof installed
- if [ -x "$(command -v pidof)" ]; then
- pidof $1
- else
- ps aux | grep $1 | awk '{print $2}'
- fi
Advertisement
RAW Paste Data
Copied
Advertisement