Net Usage (%) of a Process in Linux – Debian
I'm trying to build a script in Linux (Debian 10) that shows the net usage (%) of a process passed as an argument. This is the code, but there isn't any output: ProcessName=$1 (nethogs -t ens33 | awk '/$ProcessName/{print $3}')…