概述
ps -eo lstart 启动时间
ps -eo etime 运行多长时间.
ps -eo pid,lstart,etime | grep PID
ps -eO lstart |grep ''
写个小脚本,根据传入的参数显示对应进程的启动时间
比如运行:./show.sh mysql 显示mysql进程的启动时间:
- #!/bin/bash
- if [ -z $1 ]; then
- echo "please input ps keyword" && exit 1
- fi
- ps aux |grep $1 |grep -v "grep $1" |grep -v " $1" |while read line
- do
- linewords=($line)
- pid="${linewords[1]}"
- START_TIME=$(ps -p ${pid} -o lstart | grep -v "START")
- echo "$line $START_TIME"
- done
最后
以上就是羞涩唇膏为你收集整理的linux 查看进程启动时间(运行时间)的全部内容,希望文章能够帮你解决linux 查看进程启动时间(运行时间)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复