我们常常会想查看Linux的一些进程,很自然地用到了:

ps -ef | grep xxx

ps: process show 展示进程

参数:1. e 显示所有程序。 

   2. f  显示UID,PPIP,C与STIME栏位

grep:global search regular expression(RE) and print out the line 全局正则匹配并输出

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-05
  • 2021-11-14
  • 2021-04-30
  • 2021-07-15
  • 2022-02-17
猜你喜欢
  • 2021-07-05
  • 2022-02-01
  • 2021-07-13
  • 2021-11-12
  • 2021-11-08
  • 2021-05-25
  • 2021-07-13
相关资源
相似解决方案