#!/bin/bash
os_system(){
##系统信息
os_type=(uname)echo"操作系统的类型:{os_type}"
##系统信息
os_ver=(cat/etc/redhat−release)echo"操作系统的类型:{os_ver}"
os_ker=(uname−r)echo"操作系统的版本信息:{os_ker}"
os_time=(date+echo"服务器当前时间:{os_time}"
os_last_reboot=$(uptime |awk ‘{print $3,$4}’|awk -F ‘,’ '{print KaTeX parse error: Expected 'EOF', got '}' at position 2: 1}̲')
echo "服务器最后重…{os_last_reboot}"
os_hostname=(hostname)echo"服务器主机名称:{os_hostname}"
}
while :
do
os_system
done
