习题1
编写脚本/root/bin/systeminfo.sh,显示当前主机系统信息,包括主机名,IPv4地址,操作系统版本,内核版本,
CPU型号,内存大小,硬盘大小。
答案
#!/bin/bash IPADDR=$(ifconfig | head -2 |tail -1 |awk {'print $2'})
SYSINFO=$(cat /etc/redhat-release)
KERNEL=$(uname -r)
CPU=$(lscpu | head -13 |tail -1 |awk {'print $2,$3,$4'})
Mem=$(free -h | awk {'print $2'} | head -2 | tail -1) echo "hostname is: `hostname`" echo "ipaddress is: ${IPADDR}" echo "systerm version is: ${SYSINFO}" echo "kernel version is: ${KERNEL}" echo "CPU is: ${CPU}" echo "Memory size is: ${Mem}" echo "Hard disk information:" df -h
习题2
编写脚本/root/bin/backup.sh,可实现每日将/etc/目录备份到/apps/backup/etc-YYYY-mm-dd.tar.gz。
答案
#!/bin/bash [[ -d /apps/backup ]] ||mkdir -p /app/backup cd /apps/backup
tar -zcvf etc-`date +%F`.tar.gz /etc/ echo "backup is complete"
习题3
编写脚本/root/bin/disk.sh,显示当前硬盘分区中空间利用率最大的值。
答案
#!/bin/bash percent=$(df -h | awk {'print $5,$6'} |sort -nr |awk {'print $1'}|head -1)
name=$(df -h | awk {'print $5,$6'} |sort -nr |awk {'print $2'}|head -1) echo "The most useful harddisk is ${name},has used ${percent}"
习题4
编写脚本/root/bin/links.sh,显示正连接本主机的每个远程主机的IPv4地址和连接数,并按连接数从大到小排序。
答案
#!/bin/bash w |grep -v -e "FROM" -e "user" -e ":0\>" |awk {'print $1,$3'} |uniq -c |sort -nr
习题5
编写脚本/root/bin/sumid.sh,计算/etc/passwd文件中的第10个用户和第20用户的ID之和。
答案
#!/bin/bash ID1=$(head -10 /etc/passwd | tail -1 |cut -d":" -f3)
ID2=$(head -20 /etc/passwd | tail -1 |cut -d":" -f3) let sum=$ID1+$ID2 echo "第十个用户ID为${ID1},第二十个用户ID为${ID2},其ID和为${sum}"
习题6
编写脚本/root/bin/sumspace.sh,传递两个文件路径作为参数给脚本,计算这两个文件中所有空白行之和。
答案
#!/bin/bash/ [ ! -e $1 ] && echo "无${1}文件" && exit 1 [ ! -e $2 ] && echo "无${2}文件" && exit 2 file1=$(cat $1 |grep "^$" |wc |tr -s " " |awk '{print $1}')
file2=$(cat $2 |grep "^$" |wc |tr -s " " |awk '{print $1}') let sum=$file1+$file2 echo "第一个文件为$1,第二个文件为$2,总计空行数量为$sum"
原创文章,作者:zero,如若转载,请注明出处:http://www.178linux.com/73141
评论列表(1条)
虽然内容不多,但能够给人眼前一亮的感觉,总结了bash脚本的练习。排版非常好,内容要是再多一些就更好了。