我希望能够运行ss
和过滤PID=$(pgrep emacs)
和FDs=(5u|6u|8u)
。是否ss
支持对其中一个(或两个)进行过滤?或者是最好的选择grep
?
我目前正在使用lsof
,但我更喜欢使用ss
:
lsof -p $(pgrep emacs) | rg '\b(5|6|8)u\b'
答案1
做
ss -tlnp | grep -w emacs | grep -E 'fd=(5|6|8)\)'
为你工作?
我希望能够运行ss
和过滤PID=$(pgrep emacs)
和FDs=(5u|6u|8u)
。是否ss
支持对其中一个(或两个)进行过滤?或者是最好的选择grep
?
我目前正在使用lsof
,但我更喜欢使用ss
:
lsof -p $(pgrep emacs) | rg '\b(5|6|8)u\b'
做
ss -tlnp | grep -w emacs | grep -E 'fd=(5|6|8)\)'
为你工作?