持续检查特定程序的 netstat 输出

持续检查特定程序的 netstat 输出

我有一个在端口 5554 上运行的 android 模拟器。我想持续观察有关模拟器内容的 netstat 输出。

现在我每次都必须手动执行此命令

sudo netstat -plant | grep emulator

我以为这样做会每 2 秒自动重复上述命令。

watch sudo netstat -plant | grep emulator

但相反,它却挂起了终端。如何实现这样的功能?谢谢

答案1

您尝试过这些选项吗?摘自以下man netstat页面:

-c, --continuous
  This will cause netstat to print the selected information every second continuously. 
delay
  Netstat will cycle printing through statistics every delay seconds.

对于你的情况,你只要写:

sudo netstat -cplant | grep emulator

答案2

在终端中尝试一下:

netstat -tuonp

相关内容