Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
pgrep command
man pgrep
fuser -c /reports
fuser -c -s KILL /reports
#!/bin/bash
for i in $(ps aux | grep /reports | awk {'print$2'})
do
kill -9 $i
done
kill -9 $(ps aux | grep /reports | awk '{print $2}')