【shell脚本】查询本机系统信息shell脚本

适用于中文版本的centos系统

#!/bin/bash

##提取本机的ip地址
ip=$(ifconfig ens33|grep netmask|tr -s " "|cut -d " " -f3)

##提取本机的cpu型号
cpu=$(lscpu|grep "型号名称"|cut -d ":" -f2|tr -s " ")

##提取本机的内核版本
kernel=$(uname -r)

##提取本机的内存大小
MEM=$(free -h|grep Mem|tr -s " "|cut -d " " -f2)

##提取本机的磁盘大小
disk=$(lsblk|grep disk|tr -s " "|cut -d " " -f4)

echo "-------systeminformation--------"
echo "你的当前主机ip地址是:${ip}"
echo "你当前的系统版本是:$(cat /etc/redhat-release)"
echo "你的当前主机名是:$(hostname)"
echo "你的cpu型号是: ${cpu}"
echo "你的内核版本是: ${kernel}"
echo "你的内存大小:${MEM}"
echo "你的磁盘大小是:${disk}"
echo "----------------------------------"

【shell脚本】查询本机系统信息shell脚本_第1张图片

你可能感兴趣的:(网络,linux,bash,运维)