For example, we'd like to see:
PROCESS IF TX RX FILE(regular) R/W
prog1 eth0 200kB/s 12kB/s -- --
wlan0 12kB/s 100kB/s -- --
-- -- -- file1 R
-- -- -- file2 R
-- -- -- file3 W
prog2 eth0 0kB/s 200kB/s -- --
-- -- -- file4 W
-- -- -- file5 W
Is this possible? nethogs only shows the TX/RX, while lsof only shows the file accesses.
I'm currently doing a 2-step process like so:
sudo nethogs
sudo lsof -a -d 1-999 -c hogging_program /
Is there a better way?

