第八周练习脚本部分

1、写一个脚本,使用ping命令探测172.16.250.1-172.16.250.254之间的所有主机的在线状态;在线的主机使用绿色显示;不在线的主使用红色显示;

#!/bin/bash
#
for((i=1;i<=254;i++));do
    site="172.16.250.${i}"
    ping -w1 -c1 $site &> /dev/null
    if [[ "$?" == "0" ]];then
        echo -e "\033[32m${site}\033[0m"
    else
        echo -e "\033[35m${site}\033[0m"
    fi
done

2.写一个脚本,完成以下功能

(1) 假设某目录(/etc/rc.d/rc3.d/)下分别有K开头的文件和S开头的文件若干;

(2) 显示所有以K开头的文件的文件名,并且给其附加一个stop字符串;

(3) 显示所有以S开头的文件的文件名,并且给其附加一个start字符串;

(4) 分别统计S开头和K开头的文件各有多少;

#!/bin/bash
#
for i in $(ls /etc/rc.d/rc3.d/);do
    if [[ "$i" =~ ^S  ]];then
        S=$(echo $i | wc -l)
        let Ssum+=$S
        echo ${i}start
    fi
    if [[ "$i" =~ ^K  ]];then
        K=$(echo $i | wc -l)
        let Ksum+=$K
        echo ${i}stop
    fi
done
    echo "S Begin:$Ssum"
    echo "K Begin:$Ksum"

3、写一个脚本,完成以下功能

(1) 脚本能接受用户名作为参数;

(2) 计算此些用户的ID之和;

#!/bin/bash
#
if [ $# -eq 0 ];then
    echo "At least one parameter,try the script again,please!"
    exit 1
fi
for i in $*;do
    id $i &> /dev/null && uid=$(grep -E "^${i}" /etc/passwd | cut -d: -f3) || echo "This user isn't existing"
    let sum+=$uid
done
    echo "ID_SUM is $sum"

4、写一个脚本

(1) 传递一些目录给此脚本;

(2) 逐个显示每个目录的所有一级文件或子目录的内容类型;

(3) 统计一共有多少个目录;且一共显示了多少个文件的内容类型;

#!/bin/bash
#
if [ $# -eq 0 ];then
    echo "At least one parameter,try the script again,please!"
    exit 1
fi
for i in $*;do
    if [ -d $i ];then
        ls $i
        dnum=$(ls $i | wc -l)
        echo "The Directory has $dnum files"
    else
        ls $i
        echo "This is a commom file:$i"
    fi
done

5、写一个脚本

通过命令行传递一个参数给脚本,参数为用户名

如果用户的id号大于等于500,则显示此用户为普通用户;

#!/bin/bash
#
if [ $# -eq 0 ];then
    echo "At least one parameter,try the script again,please!"
    exit 1
fi
for i in $*;do
    id $i &> /dev/null && uid=$(grep -E "^${i}" /etc/passwd | cut -d: -f3) || echo "This user isn't existing"
        if [[ "$uid" > "500" ]];then
            echo "$i is a common user"
        fi
done

6、写一个脚本

(1) 添加10用户user1-user10;密码同用户名;

(2) 用户不存在时才添加;存在时则跳过;

(3) 最后显示本次共添加了多少用户;

#!/bin/bash
#
x=0
for i in {1..10};do
    id user$i &> /dev/null && continue || useradd user$i && echo "user$i" | passwd --stdin user$i && let x++
done
    echo "add $x users"

7、写一脚本,用ping命令测试172.16.250.20-172.16.250.100以内有哪些主机在线,将在线的显示出来;

与第一题相似,就不写啦~

8、打印九九乘法表;

#!/bin/bash
#
for((i=1;i<=9;i++));do
    for((j=1;j<=i;j++));do
        echo -e -n "$j*$i=$[$i*$j]\t"
    done
    echo ""
done

原创文章,作者:N24_涩味,如若转载,请注明出处:http://www.178linux.com/63855

(0)
N24_涩味N24_涩味
上一篇 2016-12-15
下一篇 2016-12-16

相关推荐

  • 第三周作业

    1、列出1、列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。[root@localhost ~]# who | cut -d ‘ ‘ -f1 | sort -u 2、取出最后登录到当前系统的用户的相关信息。[root@localhost ~]# who | tail -1 | export &am…

    Linux干货 2017-12-16
  • old notes

    yum update: update software guest edition ***: how to install guest edition: 1) need to root: su – 2) yum install kernel-devel 3)yum install gcc* ( when don't remember n…

    Linux干货 2016-09-19
  • raid 5 软件实现

    raid 5        RAID 5是一种存储性能、数据安全和存储成本兼顾的存储解决方案。 RAID 5可以理解为是RAID 0和RAID 1的折中方案。RAID 5可以为系统提供数据安全保障,但保障程度要比Mirror低而磁盘空间利用率要比Mirror高。RAID 5具有和RAID 0相近似的…

    2017-05-02
  • FTP部署及简单应用

    文件服务: ftp:应用层,C/S,文件共享;file transfer protocol; nfs,cifs:文件系统接口,网络文件系统;     nfs:network file system     cifs:common …

    Linux干货 2016-10-19
  • 关于文件查找和解压缩

                     文件查找和解压缩在文件系统上查找符合条件的文件,文件查找的工具有两个,locate 和find文件查找分为:          &nbs…

    系统运维 2016-08-18

评论列表(1条)

  • 马哥教育
    马哥教育 2016-12-23 12:07

    赞~~从几个脚本来看,掌握的非常不错~~继续加油~