1、用shell脚本批量建立Linux用户
实现要求:创建用户student1到student50,指定组为student组!而且每个用户需要设定一个不同的密码!

脚本实现如下:


[plain]  ​​view plain​​​  ​​​copy​


  1. <span style="font-size:14px;">#!/bin/bash
  2. for i in `seq 1 50`
  3. do
  4. useradd -G student student$i ;
  5. echo student$i | passwd student$i --stdin;
  6. done</span>

[html]  ​​view plain​​​  ​​​copy​



【说明:Linux下 Passwd有参数  --stdin  This option is used to indicate that passwd should read the new password from standard input, which can be a pipe.  所以linux下自动改变用户密码的办法就是:  Echo 密码 |passwd –stdin 用户名】-------------------设置相同的密码------------------------

[html]  ​​view plain​​​  ​​​copy​


  1. #!/bin/bash
  2. password="123456"
  3. for USER in user1 user2 user3
  4. do
  5. useradd -m $USER
  6. echo -e "${password}\n${password}" | passwd $USER
  7. done

 【说明:


     echo -n 不换行输出:


$echo -n "123"


$echo "456"


最终输出 123456


而不是


123


456


    echo -e 处理特殊字符:


        \n 换行且光标移至行首 】 


ok,就这么一个简单的脚本,就可以再系统里批量生成账号了。而且密码跟账号的名字一样。


这就是for do done语句用法。



2、 编写shell脚本,将/usr/local/test目录下大于100k的文件转移到/tmp目录下:


[html]  ​​view plain​​​  ​​​copy​


  1. #!/bin/bash
  2. for FILE in `ls /usr/local/test`
  3. do
  4. if [ -f $FILE ] ; then
  5. if [ `ls -l  $FILE | awk `{print $5}` -gt 100000 ] ; then
  6. mv $FILE  /tmp/
  7. fi
  8. fi
  9. done

================


[html]  ​​view plain​​​  ​​​copy​


  1. #!/bin/bash
  2. for FileName in `ls -l  /usr/local/test | awk '$5>102400' {print $9}`
  3. do
  4. mv $FileName  /tmp/
  5. done
  6. ls -al  /tmp/
  7. echo  "done!"


3、通过apache访问日志access.log 统计IP和每个地址访问的次数,按访问量列出前10名。


     日志格式样例如下:


     192.168.1.247  ---【02/jul/2010:23:44:59 + 8080 】 "GET /HTTP/1/1"   200 19


     答案:


         cat  access.log | awk '{print  $1}' |sort| uniq -c |sort -rn |head -10


 (uniq 参数说明:– c 显示输出中,在每行行首加上本行在文件中连续出现的次数。


     sort参数说明:sort默认的排序方式是升序,-r 参数就会改变成倒叙;你有没有遇到过10比2小的情况。我反正遇到过。出现这种情况是由于排序程序将这些数字按字符来排序了,排序程序会先比较1和2,显然1小,所以就将10放在2前面喽。这也是sort的一贯作风。)



4、一台监控主机,一台被监控主机。被监控主机分区使用率大于80%,就发告警邮件。放到crontab里面,每10分钟执行一次。


        a、 首先两台机器要建立服务器间的信任关系。


        b、脚本:


[html] 
​​view plain​​​
​​​copy​​


1. #!/bin/bash
2. FSMAX="80"
3. remote_user='root'
4. remote_ip=(IP地址列表)
5. ip_num='0'
6. while [ "$ip_num" -le "$(expr ${#remote_ip[@]} -l)"]
7. do
8. read_num='1'
9. > /tmp/diskcheck_tmp
10. > /tmp/diskcheck_num_tmp
11. < /tmp/diskcheck_num_tmp) ]
12. do
13. size=$(sed -n "$read_num" 'p' /tmp/diskcheck_num_tmp)
14. if [ "size" -gt "$FSMAX" ]
15. then
16. > /tmp/disk_check_mail)
17. >> /tmp/disk_check_mail)
18. < /tmp/disk_check_mail)
19. fi
20. read_num=$(expr $read_num + 1)
21. done
22. ip_num=$(expr $ip_num + 1)
23. done

              ===================写入crontab=====================


                0/10 * * * *   /home/diskcheck.sh   2&>1




5、监控主机的磁盘空间,当使用空间超过90%就通过发mail来发警告


[html] 
​​view plain​​​
​​​copy​​


1. #!/bin/bash
2. #monitor available disk space
3. #提取本服务器的IP地址信息
4. IP=`ifconfig eth0 | grep "inet addr" | cut -f 2 -d ":" | cut -f 1 -d " "`
5. SPACE=` df -hP | awk '{print int($5)}'`
6. if [ $SPACE -ge 90 ]
7. then
8. echo "$IP 服务器 磁盘空间 使用率已经超过90%,请及时处理。"|mail -s "$IP 服务器硬盘告警" fty89@163.com
9. fi

6、自动ftp上传     


   

[html] 
​​view plain​​​
​​​copy​​


1. #! /bin/bash
2. << END_FTP
3. open 192.168.1.22
4. user test testing //用户名test 密码:testing
5. binary
6. prompt off //关闭提示
7. mput files //上传files文件
8. close
9. bye
10. END_FTP

7、编写shell脚本,获取本机的网络地址。比如:本机的ip地址是:


192.168.100.5/255.255.255.0,


那么他的网络地址是:


192.168.100.1/255.255.255.0


方法一:


[html] 
​​view plain​​​
​​​copy​​


1. #!/bin/bash
2. IP=ifconfig eth0|grep 'inet addr'|sed 's/^.*addr://g'|awk '{print $1}'
3. NETMASK=ifconfig eth0 |grep "inet addr"|sed 's/^.*Mask://g'
4. echo "$IP/&NETMASK"
5. exit

方法二:


[html] 
​​view plain​​​
​​​copy​​


1. #!/bin/bash
2. #This script print ip and network
3. file="/etc/sysconfig/network-scripts/ifcfg-eth0"
4. if [ -f $file ] ;then
5. IP=`grep "IPADDR" $file|awk -F"=" '{ print $2 }'`
6. MASK=`grep "NETMASK" $file|awk -F"=" '{ print $2 }'`
7. echo "$IP/$MASK"
8. exit 1
9. fi

IP地址也可这样获取:IP=`ifconfig eth0 | grep "inet addr" | cut -f 2 -d ":" | cut -f 1 -d " "


子网掩码:NETMASK= `ifconfig eth0 | grep "inet addr"|cut -f 4 -d ":"



 8、某系统管理员需要每天做一定的重复工作,编制一个解决方案:


(1).从下午4:50 删除/abc 目录下的全部子目录和全部文件;


(2).从早上8:00~下午6:00 每小时读取/xyz 目录下x1 文件中每行第一个域的全部数


据加入到/backup 目录下的back01.txt 文件内;


(3).每逢周一下午5:50 将/data 目录下的所有目录和文件归档并压缩为文件


backup.tar.gz;


(4).在下午5:55 将IDE 接口的CD-ROM 缷载(假设CD-ROM 的设备名为hdc);


(5).在早上8:00 前开机后启动。


(a)用vi创建编辑一个名为prgx的crontab文件;


(b)prgx文件的内容:


            50 16 * * * rm -r /abc/*


            0 8-18/1 * * * cut -f1 /xyz/x1 >>  /backup/bak01.txt


            50 17 * * * tar zcvf backup.tar.gz /data


            55 17 * * * umount /dev/hdc


(c)由超级用户登录,用crontab执行 prgx文件中的内容:


            root@xxx:#crontab prgx;在每日早晨8:00之前开机后即可自动启动crontab



9.设计一个shell程序,添加一个新组为class1,然后添加属于这个组的30个用户,用户名的形式为stdxx,其中xx从01到30 


参考答案: 

[html] 
​​view plain​​​
​​​copy​​


1. #!/bin/sh
2. i=1
3. groupadd class1
4. while [ $i -le 30 ]
5. do
6. if [ $i -le 9 ] ;then
7. USERNAME=stu0${i}
8. else
9. USERNAME=stu${i}
10. fi
11. useradd $USERNAME
12. mkdir /home/$USERNAME
13. chown -R $USERNAME /home/$USERNAME
14. chgrp -R class1 /home/$USERNAME
15. i=$(($i+1))
16. done

10.编写shell程序,实现自动删除50个账号的功能。账号名为stud1至stud50。 


参考程序: 


11.设计一个shell程序,在每月第一天备份并压缩/etc目录的所有内容,存放在/root/bak目录里,且文件名为如下形式yymmdd_etc,yy为年,mm为月,dd为日。Shell程序fileback存放在/usr/bin目录下。 

[html] 
​​view plain​​​
​​​copy​​


1. #!/bin/sh
2. i=1
3. while [ $i -le 50 ]
4. do
5. userdel -r stud${i}
6. i=$(($i+1 ))
7. done

参考答案:

(1)编写shell程序fileback: 

[html] 
​​view plain​​​
​​​copy​​


1. #!/bin/sh
2. DIRNAME=`ls /root | grep bak`
3. if [ -z "$DIRNAME" ] ; then
4. mkdir /root/bak
5. cd /root/bak
6. fi
7. BACKETC=$(date +%Y%m%d)_etc.tar.gz
8. tar zcvf $BACKETC /etc
9. echo "fileback finished!"

(2)编写任务定时器: 


echo "0 0 1 * * /bin/sh /usr/bin/fileback" >; /root/etcbakcron 


crontab /root/etcbakcron 


或使用crontab -e 命令添加定时任务: 


0 1 * * * /bin/sh /usr/bin/fileback 



12.有一普通用户想在每周日凌晨零点零分定期备份/user/backup到/tmp目录下,该用户应如何做? 

参考答案:

(1)第一种方法: 

用户应使用crontab –e 命令创建crontab文件。格式如下: 

0 0 * * sun cp –r /user/backup /tmp 

(2)第二种方法: 

用户先在自己目录下新建文件file,文件内容如下: 

0 * * sun cp –r /user/backup /tmp 

然后执行 crontab file 使生效。 

13.设计一个Shell程序,在/userdata目录下建立50个目录,即user1~user50,并设置每个目录的权限,其中其他用户的权限为:读;文件所有者的权限为:读、写、执行;文件所有者所在组的权限为:读、执行。 

参考答案: 建立程序 Pro16如下: 

[html] 
​​view plain​​​
​​​copy​​


1. #!/bin/sh
2. i=1
3. while [ i -le 50 ]
4. do
5. if [ -d /userdata ];then
6. mkdir -p -m 754 /userdata/user$i 加上-m 754 就不用写下面那一句了 -p 是递归建立目录
7. #chmod 754 /userdata/user$i
8. echo "user$i"
9. let "i = i + 1" (或i=$(($i+1))
10. else
11. mkdir /userdata
12. mkdir -p -m /userdata/user$i
13. #chmod 754 /userdata/user$i
14. echo "user$i"
15. let "i = i + 1" (或i=$(($i+1))
16. fi
17. done
18.