1.编写一个shell脚本获取linux服务器主机名 .地址 .cpu个数 .操作系统.字符集 同时输出到屏幕中
编写脚本如下:
#!/bin/bash
name=$(hostname)
iip=$(ip a s eth0|awk -F'[ /]+' 'NR==3{print $3}')
ccpu=$(cat /proc/cpuinfo |grep 'physical id' |wc -l)
cau=$(cat /etc/redhat-release)
echo "主机名$name;地址$iip;cpu个数$ccpu;字符集$LANG;操作系统$cau"
脚本实行:
[root@m01 /server/scripts]# sh chakan.sh
主机名m01;地址10.0.0.61;cpu个数1;字符集en_US.UTF-8;操作系统CentOS Linux release 7.6.1810 (Core)