博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pgrep 查询进程的工具
阅读量:5947 次
发布时间:2019-06-19

本文共 1020 字,大约阅读时间需要 3 分钟。

pgrep

1:简介

  pgrep 是通过程序的名字来查询进程的工具,一般是用来判断程序是否正在运行。在服务器的配置和管理中,这个工具常被应用,简单明了;

 

 

1:用法

#pgrep 参数选项 程序名

  常用参数
  -l 列出程序名和进程ID;
  -o 进程起始的ID;
  -n 进程终止的ID;
  举例:
  

[root@localhost ~]# pgrep -lo httpd  4557 httpd  [root@localhost ~]# pgrep -ln httpd  4566 httpd  [root@localhost ~]# pgrep -l httpd  4557 httpd  4560 httpd  4561 httpd  4562 httpd  4563 httpd  4564 httpd  4565 httpd  4566 httpd  [root@localhost ~]# pgrep httpd  4557  4560  4561  4562  4563  4564  4565  4566

 

 

root@VM_160_34_centos:~/shell> AAA="'pgrep httpd'"root@VM_160_34_centos:~/shell> echo AAAAAAroot@VM_160_34_centos:~/shell> echo $AAA'pgrep httpd'root@VM_160_34_centos:~/shell> AAA="`pgrep httpd`"root@VM_160_34_centos:~/shell> echo $AAAroot@VM_160_34_centos:~/shell> pgrep httpdroot@VM_160_34_centos:~/shell> echo $?1root@VM_160_34_centos:~/shell> pgrep nginx261922619326194root@VM_160_34_centos:~/shell> AAA="`pgrep nginx`"root@VM_160_34_centos:~/shell> echo $?0root@VM_160_34_centos:~/shell> echo $AAA26192 26193 26194root@VM_160_34_centos:~/shell>

 

 

 

 

 

转载地址:http://zhfxx.baihongyu.com/

你可能感兴趣的文章
React 组件通信之 React context
查看>>
Linux下通过配置Crontab实现进程守护
查看>>
ios 打包上传Appstore 时报的错误 90101 90149
查看>>
Oracle推出轻量级Java微服务框架Helidon
查看>>
密码概述
查看>>
jQuery的技巧01
查看>>
基于泛型实现的ibatis通用分页查询
查看>>
gopacket 使用
查看>>
AlertDialog对话框
查看>>
我的友情链接
查看>>
linux安全---cacti+ntop监控
查看>>
鸟哥的linux私房菜-shell简单学习-1
查看>>
nagios配置监控的一些思路和工作流程
查看>>
通讯组基本管理任务三
查看>>
赫夫曼编码实现
查看>>
html页面显示div源代码
查看>>
Centos下基于Hadoop安装Spark(分布式)
查看>>
3D地图的定时高亮和点击事件(基于echarts)
查看>>
接口由40秒到200ms优化记录
查看>>
java 视频播放 多人及时弹幕技术 代码生成器 websocket springmvc mybatis SSM
查看>>