一、此题来源51cto linux论坛版

用户输入A;B;C;D;E;F;G

输入A的话就查看/etc/passwd最后5个系统用户,只要显示用户名和UID就行了,其他不要

输入B的话就显示系统开机时间多久了

输入C的话就判断当前磁盘根目录使用情况是否超过50%,如果超过50%就显示“disk space is used over 50%”;如果没超过50%就显示“disk space is user below 50%”

输入D的话就显示出系统当前处于LISTEN状态的PID进程程序名称,以“program-name(pid)”这种形式显示。

输入E的话获取系统的IP和掩码,以"IP/NETMASK"形式显示

输入F的话添加系统用户,完了后添加该用户密码(记得给以提示操作)

输入G的话显示系统使用率最多的10条命令,还有使用的次数

还有一点,执行脚本的时候要说清楚下ABCDEFG各个选项的作用!

如果输入其他非ABCDEFG选项的错误选项,就显示“your input is wrong”消息

  1. [root@shell ~/shell]# cat test.sh  
  2. #!/bin/bash 
  3.  
  4. read -p "A B C D E F G:" u 
  5.  
  6.  
  7. case $u in 
  8.         [aA]) 
  9.                 tail -5 /etc/passwd | awk -F: '{print $1,$3}' 
  10.         ;; 
  11.         [bB]) 
  12.                 echo "你的系统运行了:"`uptime | awk '{print $3}' | sed 's/\,//'` 
  13.         ;; 
  14.         [cC]) 
  15.         User=`df | grep "/$" | awk '{print $5}'| sed 's/%//'` 
  16.  
  17.         if [ "$User" -gt 50 ]; then 
  18.  
  19.                 echo "disk space is used over 50%" 
  20.  
  21.         else 
  22.  
  23.                 echo "disk space is user below 50%" 
  24.         fi 
  25.         ;; 
  26.         [dD]) 
  27.                 netstat -tulp | grep "LISTEN" | awk '{print $7}' | awk -F/ '{print $2"("$1")"}' 
  28.         ;; 
  29.         [eE]) 
  30.                 ip=`ifconfig eth0 | grep "inet addr"| awk '{print $2}' | awk -F: '{print $2}'` 
  31.                 Mask=`ifconfig eth0 | grep "Mask"| awk '{print $4}' | awk -F: '{print $2}'` 
  32.                 echo "系统IP:" $ip\/$Mask 
  33.         ;; 
  34.         [fF]) 
  35.                 read -p "please input you username:" username 
  36.                 read -p "please input you password:" password 
  37.  
  38.                 useradd $username  
  39.                 echo "$password" | passwd --stdin $username 
  40.                 echo "用户建立完成" 
  41.         ;; 
  42.         [gG]) 
  43.                 cat ~/.bash_history | sort | uniq -c | sort -nk 1 | tail  
  44.         ;; 
  45.         *) 
  46.                 echo "you input is wrong" 
  47.  
  48. esac 

 

二、判断主机类型

  1. #!/bin/bash 
  2.  
  3. ip="192.168.209." 
  4. LOG="/tmp/ip.log" 
  5. for i in `seq 1 254` 
  6. do 
  7.  
  8.         ping -c 2 "$ip$i">/tmp/log.txt 
  9.  
  10.         if [ $? -ne 0 ]; then 
  11.                 continue 
  12.         fi 
  13.  
  14.         okip=`cat /tmp/log.txt | grep ttl |awk -F '[: =]' '{print $4}'|sort|uniq ` 
  15.         ttl=`cat /tmp/log.txt | grep ttl | awk -F '[: =]' '{print $9 }'|uniq` 
  16.         if [ $ttl -eq 64 ]; then 
  17.                 echo "check $okip is linux" 
  18.         elif [ $ttl -eq 128 ]; then 
  19.                 echo "check $okip is windows" 
  20.         else 
  21.                 echo "other" 
  22.         fi 
  23. done 

判断原理:根据ping返回ttl值,进行判断