sh命令如何由进程pid得到端口号
netstat -anp|grep 进程pid,得到如图结果。 我想得到1024这个端口号。怎么得到。
netstat -anp | grep 8282 | awk -F '[ :]+' '{print $7}'