码迷,mamicode.com
首页 > 系统相关 > 详细

查询Linux 开机时间和运行时长

时间:2015-01-28 11:21:35      阅读:607      评论:0      收藏:0      [点我收藏+]

标签:second   linux   

查询开机时间

cat /proc/uptime| awk -F. ‘{run_days=$1 / 86400;run_hour=($1 % 86400)/3600;run_minute=($1 % 3600)/60;run_second=$1 % 60;printf("系统已运行:%d天%d时%d分%d秒",run_days,run_hour,run_minute,run_second)}‘

查询运行时长

date -d "$(awk -F. ‘{print $1}‘ /proc/uptime) second ago" +"%Y-%m-%d %H:%M:%S"


查询Linux 开机时间和运行时长

标签:second   linux   

原文地址:http://weihaoxuan.blog.51cto.com/8698172/1609035

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!