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.
function viewprocess() {
targ=${1:-""}
i=0
test -z $targ && exit 1>/dev/null
for all in `fuser $targ`
do
all=`echo $all | sed 's/[^0-9]+//'`
#or: all=${all/[^0-9]+/""}
strace -p $all
i=`expr $i + 1`
done
echo -e "\n###Viewed $i processes in $targ###\n"
}