CentOS 查看系统运行时间

前端之家收集整理的这篇文章主要介绍了CentOS 查看系统运行时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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)}'
原文链接:https://www.f2er.com/centos/375120.html

猜你在找的CentOS相关文章