1、编写脚本/root/bin/systeminfo.sh, 显示当前主机系统信息,包括主机名,IPv4 地址,操作系统版本,内核版本,CPU 型号,内存大小,硬盘大小。
#!/bin/bash
echo "hostname is `hostname`"
echo "IPv4 is `ifconfig | sed -n '2p'| sed 's/^[[:space:]]\+inet[[:space:]]\+//' | sed 's/[[:space:]]\+net.*//'`"
echo "OS version is `cat /etc/centos-release`"
echo "OS kernel is `uname -r`"
echo "CPU NO is `uname -m`"
echo "`cat /proc/meminfo | sed -n '1p'`"
echo "sda size is `lsblk | sed -n '2p' | tr -s ' ' '%' | cut -d % -f 4`"
2、编写脚本/root/bin/backup.sh,可实现每日将/etc/目录备份到/root/etcYYYY-mm-dd中
#!/bin/bash
cp -r /etc/ /root/etc`date +%F`
3、编写脚本/root/bin/disk.sh, 显示当前硬盘分区中空间利用率最大的值
#!/bin/bash
echo "disk used biggest is `df | grep '^\/dev\/sd.*' | tr -s ' ' ':' | cut -d : -f 5 | sort -nr | sed -n '1p'`"
4、编写脚本/root/bin/links.sh,显示正连接本主机的每个远程主机的IPv4
#!/bin/bash
netstat -nt | grep '[0-9]\.' | tr -s ' ' ':' | cut -d: -f6 | sort | uniq -c | sort –nr
5、 写一个脚本/root/bin/sumid.sh,计算/etc/passwd文件中的第10个用户和第20用户的ID 之和
#!/bin/bash
uid_10="`sed -n '10p' /etc/passwd | cut -d: -f3`"
uid_20="`sed -n '20p' /etc/passwd | cut -d: -f3`"
echo "sum is $[uid_10+uid_20]"
6、写一个脚本/root/bin/sumspace.sh,传递两个文件路径作为参数给脚本,计算这两个文件中所有空白行之和
#!/bin/bash
count1="`grep '^$' $1 | wc -l`"
count2="`grep '^$' $2 | wc -l`"
echo "sum count is $[count1+count2]"
7、 写一个脚本/root/bin/sumfile.sh, 统计/etc, /var,/usr目录中共有多少个一级子目录和文件
#!/bin/bash
etc_count="`ls -d /etc/* | wc -l`"
var_count="`ls -d /var/* | wc -l`"
usr_count="`ls -d /usr/* | wc -l`"
echo "/etc count is $etc_count"
echo "/var count is $var_count"
echo "/etc count is $usr_count"
8、写一个脚本/root/bin/argsnum.sh ,接受一个文件路径作为参数;如果参数个数小于1 ,则提示用户“至少应该给一个参数”,并立即退出;如果参数个数不小于1 ,则显示第一个
参数所指向的文件中的空白行数
#!/bin/bash
[ $# -lt 1 ] && echo "one arg at least" || echo "`grep -c '^$' $1`"
9、写一个脚本/root/bin/hostping.sh,接受一个主机的IPv4 地址做为参数,测试是否可连通。如果能ping 通,则提示用户“该IP 地址可访问”;如果不可ping 通,则提示用户“
该IP地址不可访问”
#!/bin/bash
read -p "please input IPv4:" ip
#echo "$ip"
ping -c1 -w1 $ip &> /dev/null && echo "$ip can access" || echo "$ip can not access"
10、判断硬盘的每个分区空间和inode的利用率是否大于80,如果是,发邮件通知root磁盘满
#!/bin/bash
for i in $(df | grep '\/dev\/sd.*' | tr -s ' ' ':' | cut -d: -f1,5 | sed 's/%//'); do
# echo "this is $i"
sd_name=`echo $i | cut -d: -f1`
sd_use=`echo $i | cut -d: -f2`
[ $sd_use -gt 70 ] && echo "$sd_name disk space used $sd_use%, mail to system admin" || echo "$sd_name disk space used $sd_use%,ok"
done
echo "#####################################################"
for i in $(df -i | grep '\/dev\/sd.*' | tr -s ' ' ':' | cut -d: -f1,5 | sed 's/%//'); do
# echo "this is $i"
sd_name=`echo $i | cut -d: -f1`
sd_use=`echo $i | cut -d: -f2`
[ $sd_use -gt 70 ] && echo "$sd_name disk inode used $sd_use%, mail to system admin" || echo "$sd_name disk inode used $sd_use%,ok"
done
11、指定文件做为参数,判断文件是否为.sh后缀,如果是,添加x权限
#!/bin/bash
read -p "please input file name:" file_name
if [ ! -e $file_name ]; then
echo "$file_name is not exist"
exit
fi
if [[ $file_name =~ .sh ]]; then
echo "suffix is .sh"
if [ ! -x $file_name ]; then
echo "$file_name add x"
chmod +x $file_name
else
echo "$file_name have x already"
fi
else
echo "suffix is not .sh"
fi
12、判断输入的IP是否为合法IP
#!/bin/bash
read -p "please input ip:" ip
ip=`echo $ip | sed 's/^[[:space:]]\+//' | sed 's/[[:space:]]\+$//'`
#echo $ip
echo $ip | egrep -o "(\<([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>\.){3}(\<([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>)" &> /dev/null && echo "ip is ok" || echo "ip is not ok"
13、 计算1+2+3+…+100
[root@localhost bin]# seq -s '+' 1 100 | bc
5050
14、输入起始值A和最后值B,计算从A+(A+1)…+(B-1)+B的总和
#!/bin/bash
read -p "please input A:" a
if [[ ! $a =~ [1-9][0-9]* ]]; then
echo "A please input Integer"
exit
fi
read -p "please input B:" b
if [[ ! $b =~ [1-9][0-9]* ]]; then
echo "B please input Integer"
exit
fi
if [[ $a < $b ]]; then
echo "`seq -s '+' $a $b | bc`"
else
echo "sorry, B bigger than A"
fi
原创文章,作者:songzizhe,如若转载,请注明出处:http://www.178linux.com/35894