Linux基础之shell脚本编程(一)

本文主要是shell脚本编程练习

1、写一个脚本

   (1)、获取并列出当前系统上的所有磁盘设备;

   (2)、显示每个磁盘设备上每个分区相关的空间使用信息;

  1 #!/bin/bash
  2 #author:BaoZhang
  3 #
  4 echo " all disk and partitions are: "
  5 for i in $(fdisk -l | grep -o "^/dev/sd.*" | cut -d" " -f1);
  6 do
  7         echo "$i"
  8         df -h $i
  9         echo -e "\n"
 10 done

2、写一个脚本

   (1) 接受一个以上文件路径作为参数;

   (2) 显示每个文件拥有的行数;

   (3) 总结说明本次共为几个文件统计了其行数;

  1 #!/bin/bash
  2 #author : BaoZhang
  3 #
  4 if [ $# -ne 1 ];then
  5   echo "usage : file_count /path/to/somedir/"
  6   exit 1
  7 fi
  8 cd $1 &>/dev/null
  9 if [ $? -ne 0 ];then
 10   echo "usage: file_count /path/to/somedir/"
 11   exit 2
 12 else
 13   file_number=$(ls -l $1 | wc -l)
 14   for i in $(ls $1);
 15   do
 16     echo "line number of $i is: $(cat $i |  wc -l)"
 17   done
 18 fi
 19 echo "all the file in $1 are : $file_number"
 20

3、写一个脚本

   (1) 传递两个以上字符串当作用户名;

   (2) 创建这些用户;且密码同用户名;

   (3) 总结说明共创建了几个用户;

  1 #!/bin/bash
  2 #author:BaoZhang
  3 #    
  4 new_user=0
  5 exist_user=0
  6 if [ $UID -ne 0 ];then
  7   echo "only root can add user"
  8   exit 1
  9 else
 10   if [ $# -lt 2 ];then
 11     echo "usage : user_add.sh username1 username2....,arguments must more then 2 username"
 12     exit 2
 13   else
 14     for i in $*;
 15     do
 16       id $i &>/dev/null
 17       if [ $? -eq 0 ];then
 18         echo "$i exist"
 19         exist_user=$[$exist_user+1]
 20         echo $i | passwd --stdin $i &>/dev/null
 21         echo "user $i changed the password"
 22       else
 23         useradd $i
 24         new_user=$[$new_user+1]
 25         echo $i | passwd --stdin $i &>/dev/null
 26         echo "user $i add"
 27       fi
 28     done
 29   fi
 30 fi
 31 echo "in the total , $new_user created, $exist_user change the password"

4、写一个脚本,新建20个用户,visitor1-visitor20;计算他们的ID之和;

  1 #!/bin/bash
  2 #author:BaoZhang
  3 #
  4 if [ $UID -ne 0 ];then
  5   echo "only root can add user"
  6   exit 1
  7 else
  8   for i in {1..20};
  9   do
 10     id visitor$i &>/dev/null
 11     if [ $? -eq 0 ];then
 12       echo "visitor$i exist "
 13     else
 14       useradd visitor$i
 15       echo "visitor$i add finished"
 16     fi
 17     #let sum+=$[$(cat /etc/passwd | awk -F: '{if ($1=="visitor$i") print $3}')]
 18     let sum+=$[$(id -u visitor$i)]
 19   done
 20 fi

5、写一脚本,分别统计/etc/rc.d/rc.sysinit、/etc/rc.d/init.d/functions和/etc/fstab文件中以#号开头的行数之和,以及总的空白行数;

  1 #!/bin/bash
  2 #author:BaoZhang
  3 #
  4 file1=/etc/rc.d/rc.sysinit
  5 file2=/etc/rc.d/init.d/functions
  6 file3=/etc/fstab
  7 for i in {$file1,$file2,$file3};
  8 do
  9   count1+=$[$(grep "^#" $i | wc -l)]
 10   count2+=$[$(grep "^[[:space:]]$" $i  | wc -l)]
 11 done
 12 echo " start with #  total line is: $count1 "
 13 echo " total  blank line is : $count2 "

6、写一个脚本,显示当前系统上所有默认shell为bash的用户的用户名、UID以及此类所有用户的UID之和;

  1 #!/bin/bash
  2 #author:BaoZhang
  3 #
  4 echo "all users are :" 
  5 grep  "/bin/bash$" /etc/passwd | cut -d: -f1,3
  6 for i in $( grep  "/bin/bash$" /etc/passwd | cut -d: -f1,3 | cut -d: -f2);
  7 do
  8   let sum+=$[$i]
  9 done
 10 echo "the sum of  UID is: $sum"

7、写一个脚本,显示当前系统上所有,拥有附加组的用户的用户名;并说明共有多少个此类用户;

  1 #!/bin/bash
  2 #author:BaoZhang
  3 #
  4 echo "all users are:"
  5 grep "," /etc/group | cut -d: -f1
  6 echo "total user count  are : $(grep "," /etc/group | cut -d":" -f1 | wc -l  )"

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

(0)
zhangbaozhangbao
上一篇 2016-11-11
下一篇 2016-11-11

相关推荐

  • Nginx及其相关配置详解(二)

    与套接字相关的配置: 1、server { … }  #配置一个虚拟主机;         Default:—         Context:http server { # 配…

    2017-07-14
  • Linux基础学习总结(五)

    1、显示当前系统上root、fedora或user1用户的默认shell; grep -E ‘^(root|fedora|user1)\>’ /etc/passwd | awk -F ‘:’ ‘{print $7}’ 2、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello(); grep -E ‘…

    Linux干货 2016-10-20
  • 第七周作业

    1、简述linux操作系统启动流程 CentOS 启动流程图: 通电自检 power on system test(POST)–> BIOS –> 主机加电以后会将各个部件运转起来,然后通过COMS上的软件程序BIOS(Basic Input Output System)检测每个设备cpu、内存、硬盘进行故障检查并进行硬件…

    2018-02-07
  • cobbler实现centos7和centos6的无人值守安装

    环境:系统: CentOS 7.2  ip: 172.16.0.11 一. Cobbler安装准备 Cobbler是一个Linux服务器安装的服务,可以通过网络启动(PXE)的方式来快速安装、重装物理服务器和虚拟机,同时还可以管理DHCP,DNS等。 Cobbler可以使用命令行方式管理,也提供了基于Web的界面管理工具(cobbler-web),…

    Linux干货 2017-06-04
  • CentOS 6开机启动流程实验篇

    CentOS 6开机启动流程实验篇 centos 系统的启动流程 grub 破坏Linux的核心文件再修复体验系统启动流程 CentOS 6开机启动的具体详情请参见理论篇! 了解了系统启动的基本流程,以下我们通过“破坏式实验”,即破坏系统启动过程中的一些关键环节,使系统无法启动,然后我们再通过修复这些文件使得系统正常重启,进而体验Linux系统的启动流程,这…

    Linux干货 2016-09-19
  • 马哥教育网络班22期+第1周课程练习

    第1周课程练习 一、描述计算机的组成及其功能。     CPU (运算器+控制器), 存诸器(内存与外部存储),输入输出设备。      运算器:对数据进行处理(包括算述运算与逻辑运算)。      控制器:负责从存储器取出指令,按指令的要求发出控制信号,使各…

    Linux干货 2016-08-15