有一篇关于行截断的旧帖子netstat
(Netstat输出行宽限制)但我的问题有点不同。
我在 Debian 12 上使用netstat
(net-tools 2.10)。我的主要用途是列出监听端口,例如netstat -tunlpWee
我发现该PID/Program name
列太窄。有没有办法扩大这个范围?
选项-T
不受支持。选项-W
( --wide
) 没有帮助,因为它只影响 IP 地址。选项-e
是关于“附加信息”,而不是“更广泛的信息”。
此时,我认为唯一的选择是包装netstat
在脚本中并利用ps
以获得更广泛的“程序名称”。除非......我错过了一些明显的东西。
更新:谢谢,davidt930。真令人失望。我想出了这个解决方案:
#!/usr/bin/env bash
# show applications using ports
# use sudo to get the process name
# The "PID/Program name" as returned by netstat(8) is too narrow for my tastes.
# Therefore, I wrap netstat's output in a series of calls to ps(1) to get
# broader application details, i.e. the full command line.
PPWID=20
data=
while IFS= read -r ln ; do
[ -z "$data" ] && {
echo "$ln"
[ "${ln/PID\/Program name/}" != "$ln" ] && data=Y || :
continue
} || :
static="${ln:0:-$PPWID}"
program="${ln:0-$PPWID}"
[ "${program:0:1}" = "-" ] && command="(need privileges)" || {
pid=${program%%/*}
command=$(ps -o command -p $pid | tail -1)
}
echo "${static}${command}"
done< <(netstat -tunlpWee)
它有点脆弱,因为它依赖于netstat
将PID/Program name
列固定在 20。
答案1
似乎Program name
列的宽度被硬编码[0]为netstat
字符20
。因此,在不修改源代码本身的情况下不可能扩大它。
和你一样,我过去常常ps
获取更广泛的程序名称。此处讨论了列出完整程序名称的方法 [1]。
[0]https://sources.debian.org/src/net-tools/2.10-0.1/netstat.c/#L256