我是靠谱客的博主 羞涩唇膏,最近开发中收集的这篇文章主要介绍linux 查看进程启动时间(运行时间),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ps -eo lstart 启动时间 
ps -eo etime 运行多长时间.

ps -eo pid,lstart,etime | grep PID

ps -eO lstart |grep ''

写个小脚本,根据传入的参数显示对应进程的启动时间 
比如运行:./show.sh  mysql 显示mysql进程的启动时间: 

  1. #!/bin/bash                                                                                                                                                                                          
  2. if [ -z $1  ]; then  
  3.     echo "please input ps keyword" && exit 1  
  4. fi  
  5. ps aux |grep $1 |grep -v "grep $1" |grep -v " $1" |while read line  
  6. do  
  7.     linewords=($line)  
  8.     pid="${linewords[1]}"  
  9.     START_TIME=$(ps -p ${pid} -o lstart | grep -v "START")  
  10.     echo "$line $START_TIME"  
  11. done  

最后

以上就是羞涩唇膏为你收集整理的linux 查看进程启动时间(运行时间)的全部内容,希望文章能够帮你解决linux 查看进程启动时间(运行时间)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部