位置: 编程技术 - 正文

Linux Shell中判断进程是否存在的代码(Linux Shell中判断进程是否存在的方法)

编辑:rootadmin
1 利用pgrep 匹配名字 以下是补充内容: 当前系统中的进程: apple@ubuntu:~$ ps -ef UID PID PPID C STIME TTY TIME CMD root 1 0 0 : ? :: /sbin/init root 2 0 0 : ? :: [kthreadd] root 3 2 0 : ? :: [migration/0] root 4 2 0 : ? :: [ksoftirqd/0] root 5 2 0 : ? :: [watchdog/0] root 6 2 0 : ? :: [migration/1] root 7 2 0 : ? :: [ksoftirqd/1] root 8 2 0 : ? :: [watchdog/1] root 9 2 0 : ? :: [events/0] root 2 0 : ? :: [events/1] root 2 0 : ? :: [khelper] root 2 0 : ? :: [kstop/0] root 2 0 : ? :: [kstop/1] root 2 0 : ? :: [kintegrityd/0] root 2 0 : ? :: [kintegrityd/1] root 2 0 : ? :: [kblockd/0] root 2 0 : ? :: [kblockd/1] root 2 0 : ? :: [kacpid] root 2 0 : ? :: [kacpi_notify] root 2 0 : ? :: [cqueue] root 2 0 : ? :: [ata/0] root 2 0 : ? :: [ata/1] root 2 0 : ? :: [ata_aux] root 2 0 : ? :: [ksuspend_usbd] root 2 0 : ? :: [khubd] root 2 0 : ? :: [kseriod] root 2 0 : ? :: [kmmcd] root 2 0 : ? :: [btaddconn] root 2 0 : ? :: [btdelconn] root 2 0 : ? :: [pdflush] root 2 0 : ? :: [pdflush] root 2 0 : ? :: [kswapd0] root 2 0 : ? :: [aio/0] root 2 0 : ? :: [aio/1] root 2 0 : ? :: [ecryptfs-kthrea] root 2 0 : ? :: [pciehpd] root 2 0 : ? :: [scsi_eh_0] root 2 0 : ? :: [scsi_eh_1] root 2 0 : ? :: [kstriped] root 2 0 : ? :: [kmpathd/0] root 2 0 : ? :: [kmpathd/1] root 2 0 : ? :: [kmpath_handlerd] root 2 0 : ? :: [ksnapd] root 2 0 : ? :: [kondemand/0] root 2 0 : ? :: [kondemand/1] root 2 0 : ? :: [krfcommd] root 2 0 : ? :: [mpt_poll_0] root 2 0 : ? :: [scsi_eh_2] root 2 0 : ? :: [kdmflush] root 2 0 : ? :: [kdmflush] root 2 0 : ? :: [kjournald] root 1 0 : ? :: /sbin/udevd --daemon root 2 0 : ? :: [kpsmoused] root 1 0 : tty4 :: /sbin/getty tty4 root 1 0 : tty5 :: /sbin/getty tty5 root 1 0 : tty2 :: /sbin/getty tty2 root 1 0 : tty3 :: /sbin/getty tty3 root 1 0 : tty6 :: /sbin/getty tty6 root 1 0 : ? :: /usr/sbin/acpid -c /etc/acpi/eve root 1 0 : ? :: /usr/sbin/syslog-ng -p /var/run/ 1 0 : ? :: /bin/dbus-daemon --system root 1 0 : ? :: /usr/sbin/incrond -f /etc/incron root 1 0 : ? :: dhclient3 -e IF_METRIC= -pf / root 1 0 : ? :: /usr/sbin/sshd root 1 0 : ? :: /usr/lib/postfix/master postfix 0 : ? :: pickup -l -t fifo -u -c postfix 0 : ? :: qmgr -l -t fifo -u 1 0 : ? :: /usr/sbin/hald root 1 0 : ? :: /usr/sbin/console-kit-daemon root 0 : ? :: hald-runner root 0 : ? :: hald-addon-input: Listening on / root 0 : ? :: hald-addon-storage: polling /dev root 0 : ? :: hald-addon-storage: no polling o 0 : ? :: hald-addon-acpi: listening on ac daemon 1 0 : ? :: /usr/sbin/atd root 1 0 : ? :: /usr/sbin/cron root 1 0 : tty1 :: /sbin/getty tty1 root 0 : ? :: sshd: apple [priv] apple 0 : ? :: sshd: apple@pts/0 apple 1 : pts/0 :: -bash apple 0 : pts/0 :: ps -ef apple@ubuntu:~$ 1.ps -p ps -p 根据给定的pid参数判断是否有这个进程,如果有这个进程正常退出,退出值0.如果没有这个进程异常退出,退出值1. 例如: apple@ubuntu:~$ ps -p PID TTY TIME CMD ? :: sshd apple@ubuntu:~$ echo $? 0 apple@ubuntu:~$ ps -p PID TTY TIME CMD apple@ubuntu:~$ echo $? 1 apple@ubuntu:~$ 2.pgrep pgrep根据给出的进程名判断是否有这个名字的进程。如果有这个名字的进程正常退出,退出值0.如果没有这个名字的进程异常退出,退出值1. 例如: apple@ubuntu:~$ pgrep sshd apple@ubuntu:~$ echo $? 0 apple@ubuntu:~$ pgrep sshddd apple@ubuntu:~$ echo $? 1 apple@ubuntu:~$ 3./proc 每个进程都会在/proc下有一个以进程PID命名的目录。 例如: apple@ubuntu:~$ ls /proc/ ls: cannot read symbolic link /proc//cwd: Permission denied ls: cannot read symbolic link /proc//root: Permission denied ls: cannot read symbolic link /proc//exe: Permission denied attr clear_refs cpuset exe io loginuid mountinfo net pagemap sched smaps status wchan auxv cmdline cwd fd latency maps mounts oom_adj personality schedstat stat syscall cgroup coredump_filter environ fdinfo limits mem mountstats oom_score root sessionid statm task apple@ubuntu:~$ 可以根据上面的事实,编写bash脚本判断一个进程是否存在。下面以第3个事实,编写脚本。其他的脚本类似。

推荐整理分享Linux Shell中判断进程是否存在的代码(Linux Shell中判断进程是否存在的方法),希望有所帮助,仅作参考,欢迎阅读内容。

Linux Shell中判断进程是否存在的代码(Linux Shell中判断进程是否存在的方法)

文章相关热门搜索词:linux shell 判断变量是否为空,linux shell 判断变量是否为空,linux shell条件判断语句,Linux Shell中判断进程是否存在的方法,shell命令判断,linux shell 判断变量是否为空,linux shell 判断,linux shell 判断,内容如对您有帮助,希望把文章链接给更多的朋友!

Linux下Oracle归档日志自动清理脚本代码(sh) #!/bin/shexportBACK_DATE=`date+%Y%m%d`exportBACKUP_PATH=/home/oracle/dbbakecho`mkdir-p${BACKUP_PATH}/archivelog/${BACK_DATE}`rmanmsglog=$BACKUP_PATH/archivelog/${BACK_DATE}/arch_0_$BACK_DATE.logEOFcon

shell grep 查找进程的小技巧 大部分人在写Shell过滤进程的时候都会使用grep在psaux的输出结果中查找指定的进程,但此时也会把grep进程也显示出来比如查找pptpd进程,会匹配出来两条

Linux BASH多进程并行处理的方法实现 #!/bin/bashSEND_THREAD_NUM=tmp_fifofile="/tmp/$$.fifo"#脚本运行的当前进程ID号作为文件名mkfifo$tmp_fifofile"#新建一个随机fifo管道文件exec6"$tmp_fifofile"#定义文件描述

标签: Linux Shell中判断进程是否存在的方法

本文链接地址:https://www.jiuchutong.com/biancheng/378336.html 转载请保留说明!

上一篇:Linux命令行和shell脚本编程宝典 Richard Blum(Linux命令行和shell脚本编程大全)

下一篇:Linux下Oracle归档日志自动清理脚本代码(sh)(归档 oracle)

  • 增值税退税账务处理最新规定
  • 汇算清缴补交所得税怎么做凭证
  • 银行会计核算方法的特点
  • 财务费用属于什么科目借贷方向
  • 关联企业往来款 利息
  • 银行结息收入怎么做分录
  • 科目余额表一定要编吗
  • 叉车需要购置税吗
  • 暂估出库是什么意思
  • 进项税转出的附加税怎么做
  • 金蝶标准版结转损益发生错误
  • 土地增值税预缴税率
  • 民办非企业单位设立分机构
  • 小微企业所得税优惠政策2023
  • 坏账准备税务处理办法
  • 税字号是不是纳税人识别号
  • 开票码必须输入吗
  • 小微企业所得税优惠政策最新2022
  • 增值税普通发票和普通发票的区别怎么交税
  • 医保退休必须交多少年辽阳
  • 印刷费可以开哪些科目
  • 外资企业税率是多少
  • 短期融资券是
  • 苹果手机搜不到airpods
  • 公司聚餐计入什么会计科目
  • 房租发票需要缴房产税吗
  • 病毒dll文件
  • 固定资产改扩建账务处理
  • 寿命最短的苹果手机
  • 个体户何去何从
  • 少数股东权益贷方表示什么意思
  • html+javascript
  • Vue3通透教程【四】Vue3组合API初体验
  • 表单验证方法一般有哪几种
  • php远程访问
  • mybatis plus 用法
  • 发票验证不过去会怎么样
  • 工会经费是什么凭证
  • 帝国cms视频教程
  • 帝国cms文件夹介绍
  • sql server备份数据还原不了怎么办
  • 原始凭证可以外带吗
  • 发票上密码区数字什么意思
  • SQL Server中的XML数据进行insert、update、delete操作实现代码
  • 逾期未认证的增值税发票处理办法
  • 收到红字发票账务处理应附哪些资料呢
  • 车辆商业险和交强险不在同一日期
  • 加工废料如何处理
  • 未抵扣进项税额转出会计分录
  • 为什么营业成本属于费用
  • 会计所说的内账外账
  • 批量游标
  • windows在哪里添加打印机
  • win8蓝屏代码大全
  • 彻底删除win8应用商店
  • windowsxp删除所有内容
  • fedora最新版
  • 怎么在bios里设置usb开关
  • ubuntu虚拟机怎么联网
  • linux oracle 12505
  • ahci模式下安装win7蓝屏
  • windows 10预览版
  • linux查看系统日志
  • Win10 Build 10586.107正式推送 主要修复bug
  • css fontstyle
  • linux查看远程服务是否开启
  • jquery教程chm
  • nginx与php
  • angularjs常用总结
  • 如何实现高质量发展
  • unity开发游戏教程
  • javascript基础类型
  • 国家税务局河南省税务总局官网
  • 国家河南税务局
  • 2023年惠州契税最新规定
  • 中国税务干部
  • 江苏 税务局
  • 企业税费如何计算
  • 车辆免征信息怎么查
  • 苏通卡上海服务网点查询
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设