N26-博客作业-week8

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

     不在线的主使用红色显示;

#!/bin/bash
#
for i in {1..254}; do
    if -W 1 -c 1 ping 172.16.250.$i &> /dev/null; then
        echo -e "\033[32mHost 172.16.250.$i is online.\033[0m"
    else
        echo -e "\033[31mHost 172.16.250.$i is offline.\033[0m"
    fi
done

2、如何给网络接口配置多个地址,有哪些方式?

~]# ip  addr  add  192.168.121.11/24 dev eno16777736:1
~]# ifconfig eth0:1
~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0:0

3、写一个脚本,完成以下功能
   (1) 假设某目录(/etc/rc.d/rc3.d/)下分别有K开头的文件和S开头的文件若干;
   (2) 显示所有以K开头的文件的文件名,并且给其附加一个stop字符串;
   (3) 显示所有以S开头的文件的文件名,并且给其附加一个start字符串;

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

#!/bin/bash
#
declare -i k=0,s=0 

for i in $(ls /etc/rc.d/rc3.d/K* | grep -E -o "[^/]+$"); do
    echo "$i stop"
    let k++
done

for j in $(ls /etc/rc.d/rc3.d/S* | grep -E -o "[^/]+$"); do
    echo "$j start"
    let s++
done

echo "Filename begins with "s": $s"
echo "FIlename begins with "k": $k"

4、写一个脚本,完成以下功能
   (1) 脚本能接受用户名作为参数;
   (2) 计算此些用户的ID之和;

#!/bin/bash
#
declare -i sum=0

if [ $# -lt 1 ];then
    echo "At least one username!"
    exit 1
fi
for user in $@;do
    if id $user &> /dev/null; then
            sum=$[$sum+$(id -u $user)]
    else
            echo "No such user!"
            exit 2
    fi
done

echo "$sum"

5、写一个脚本
   (1) 传递一些目录给此脚本;
   (2) 逐个显示每个目录的所有一级文件或子目录的内容类型;
   (3) 统计一共有多少个目录;且一共显示了多少个文件的内容类型;

#!/bin/bash
#
declare -i dir=0,file=0,dir_all=0,file_all=0

for i in $@;do
    if [ -d $i  ]; then
        for j in $(ls $i);do
            echo "$j"
            if [ -f $i/$j ];then
                let file+=$file
            elif [ -d $i/$j ];then
                let dir+=$dir
            fi
        done
    fi
    file_all=$[$file_all+$file]
    dir_all=$[$dir_all+$dir]
done

echo "File num: $file_all"
echo "Directory num: $dir_all"

6、写一个脚本
  通过命令行传递一个参数给脚本,参数为用户名
  如果用户的id号大于等于500,则显示此用户为普通用户;

#!/bin/bash
#
if [ $# -eq 0 ];then
        echo "At least one username!" 
        exit 1
fi

id=$(id -u $1)

if [ $id -ge 500 ]; then
        echo "login user"
else
        echo "system user"
fi

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

#!/bin/bash
#
for((i=20;i<=100;i++)); do
    if ping -W 1 -c 1 172.16.250.$i &> /dev/null; then
        echo "172.16.250.$i is online"
    fi
done

8、打印九九乘法表;

#!/bin/bash
#
declare -i j=1
declare -i i=1
while [ $j -le 9 ];do
    while [ $i -le $j ];do
        echo -n -e "${i}X${j}=$[$j*$i]\t"
        let i++
    done
    let j++
    let i=1
    echo
done

原创文章,作者:浙江-咲,如若转载,请注明出处:http://www.178linux.com/71784

(0)
浙江-咲浙江-咲
上一篇 2017-03-26
下一篇 2017-03-26

相关推荐

  • sed的使用和脚本练习

    1、复制/etc/rc.d/rc.sysinit文件至/tmp目录,将/tmp/rc.sysinit文件中的以至少一个空白字符开头的行的行首加#。 cp /etc/rc.d/rc.sysinit /tmp sed -i ‘s/\(^[[:space:]]\)/#\1/g’ /tmp/rc.sysinit 2、复制/boot/grub/grub.conf至/t…

    Linux干货 2017-08-06
  • linux中for的用法

    关于linuxbash shell中的for语句 在linux中shell是必不可少的一部分,但是在bash shell中有while,for,until等循环命令,今天就介绍一下关于for的一些用法。文中任何错误希望大佬们一一指出,不胜感激。 bashshell中提供了for命令,用于创建通过一系列值重复的循环,每次重复使用系列中的一个值执行一个定义的命令…

    2017-07-15
  • centos系统自动化安装

    本章内容 系统安装过程配置anaconda自动化安装系统 安装程序 CentOS系统安装 系统启动流程: bootloader–>kernel(initramfs)–>rootfs–>/sbin/init anaconda: 系统安装程序 tui: 基于图形库curses的文本窗口 gui:图形窗口 安装程序启动过程 MBR…

    Linux干货 2016-09-19
  • Java中的Map List Set等集合类

    Map List Set等集合类: 一、概述 在JAVA的util包中有两个所有集合的父接口Collection和Map,它们的父子关系: +Collection 这个接口extends自 –java.lang.Iterable接口 ├+List(接口 代表有序,可重复的集合。列表) │├ ArreyList   &…

    Linux干货 2015-04-07
  • LAMP

    练习:编译安装amp,提供两个基于主机名的虚拟主机      (1) https, 部署pma      (2) 部署wordpress 编译安装: mariadb: # wget 10.1.0.1:/pub/Sources/7.x86_64/mariadb/…

    Linux干货 2016-10-12
  • 字符切割和用户管理

    1、列出当前系统上所有已经登录的用户的用户名,同一个用户登录多次,则只显示一次 who |cut -d’ ‘ -f1 |sort -u2、取出最后登录到当前系统的用户的相关信息。 last |head -1|cut -d’ ‘ -f1 3、取出当前系统上被用户当作其默认shell的最多的那个shell。 cut…

    2017-12-17

评论列表(1条)

  • 马哥教育
    马哥教育 2017-03-30 14:19

    可以看出脚本运用的已经比较熟练了,脚本在手,天下我有,继续加油。