马哥教育网络班19期第九周课程练习

马哥教育网络班19期第九周课程练习

1、写一个脚本,判断当前系统上所有用户的shell是否为可登录shell(即用户的shell不是/sbin/nologin);分别这两类用户的个数;通过字符串比较来实现;

#!/bin/bash

#

#count nologin

declare -i nologins=0

declare -i logins=0

file="/etc/passwd"

bashs=`cat $file  | cut -f7 -d:`

for i in $bashs ; do

 #echo $i

  if [ $i == "/sbin/nologin" ]; then

    let nologins++

  else

    let logins++

  fi

done

echo "Total nologin bash shell : $nologins."

echo "Total login bash shell : $logins."

用awk实现,统计每个shell数量:

 awk -F: '{bashs[$NF]++}END{for (i in bashs) {print "bash shell:"i,"\t bash shell count:"bashs[i]}}'  /etc/passwd

 

 cat /etc/passwd | awk -F: '{bashs[$NF]++}END{for (i in bashs) {print i,bashs[i]}}' 

2、写一个脚本

    (1) 获取当前主机的主机名,保存于hostname变量中;

    (2) 判断此变量的值是否为localhost,如果是,则将当前主机名修改为www.magedu.com;

    (3) 否则,则显示当前主机名;

#!/bin/bash

#

#change hostname

hostname=`hostname`

  if [ $hostname == 'localhost' ]; then

    hostname www.magedu.com

    echo "hostname has change to 'www.magedu.com'. "

  else

    echo $hostname

  fi

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

    (1) 传递一个磁盘设备文件路径给脚本,判断此设备是否存在;

    (2) 如果存在,则显示此设备上的所有分区信息;

#!/bin/bash

#

#show the dev info

readdevpath() {

  read -p "Please input the driver path: " drivers

   if [ $drivers = "quit" ]; then

      exit 2

   fi

   if  fdisk -l $drivers &> /dev/null  ; then

     fdisk -l $drivers

   else

     echo "invail driver"

     readdevpath

   fi

}

readdevpath

fdisk -l $drivers

4、写一个脚本,完成如下功能

   脚本能够接受一个参数;

   (1) 如果参数1为quit,则显示退出脚本,并执行正常退出;

   (2) 如果参数1为yes,则显示继续执行脚本;

   (3) 否则,参数1为其它任意值,均执行非正常退出;

#!/bin/bash

#

#arg select

if [ $# -lt 1 ]; then

  echo "<1"

  exit 2

fi

case $1 in

quit)

  echo "Exit…"

  exit 0;;

yes)

  echo "continue…";;

*)

  echo "oh no!"

  exit 4;;

esac

 

   

5、写一个脚本,完成如下功能

   传递一个参数给脚本,此参数为gzip、bzip2或者xz三者之一;

   (1) 如果参数1的值为gzip,则使用tar和gzip归档压缩/etc目录至/backups目录中,并命名为/backups/etc-20160613.tar.gz;

   (2) 如果参数1的值为bzip2,则使用tar和bzip2归档压缩/etc目录至/backups目录中,并命名为/backups/etc-20160613.tar.bz2;

   (3) 如果参数1的值为xz,则使用tar和xz归档压缩/etc目录至/backups目录中,并命名为/backups/etc-20160613.tar.xz;

   (4) 其它任意值,则显示错误压缩工具,并执行非正常退出;

   

#!/bin/bash

#

#case tar bzip xz

if [ $# -lt 1 ]; then

  echo "Userage: `basename $0` gzip|bzip2|xz "

  exit 2

fi

case $1 in

gzip)

   mkdir /backups &> /dev/null

   tar czvf /backups/etc-20160613.tar.gz /etc &> /dev/null

   echo "tar gzip Backup /etc succesful!"

;;

bzip2)

   mkdir /backups &> /dev/null

   tar cjvf /backups/etc-20160613.tar.bz2 /etc &> /dev/null

   echo "tar bz2 Backup /etc succesful!"

;;

xz)

   mkdir /backups &> /dev/null

   tar cJvf /backups/etc-20160613.tar.xz /etc &> /dev/null

   echo "tar xz Backup /etc succesful!"

;;

*)

  echo "Tar Err!"

  echo "Userage: `basename $0` gzip|bzip2|xz "

  exit 2

esac

   

   

6、写一个脚本,接受一个路径参数:

   (1) 如果为普通文件,则说明其可被正常访问;

   (2) 如果是目录文件,则说明可对其使用cd命令;

   (3) 如果为符号链接文件,则说明是个访问路径;

   (4) 其它为无法判断;

#!/bin/bash

#

#file type

if [ $# -lt 1 ]; then

  echo "Usare: `basename $0` arg (as a filename with path)."

  exit 2

fi

if [ -f $1 ]; then

  echo "$1 is a file"

elif

  [ -s $1 ]; then

  echo "$1 is a symbolic link file."

elif

 [ -d $1 ]; then

  echo "$1 is a directory.you can use 'cd $1'  change to it. "

else

  echo "Unknow file type."

fi

   

   

7、写一个脚本,取得当前主机的主机名,判断

   (1) 如果主机名为空或为localhost,或为""(none)"",则将其命名为mail.magedu.com;

   (2) 否则,显示现有的主机名即可;

#!/bin/bash

#

#change hostname

ChangeHostName() {

    hostname mail.magedu.com

    echo "hostname has change to 'mail.magedu.com'. "

}

hostname=`hostname`

  if [ $hostname == "localhost" ]; then

    ChangeHostName

  elif

     [ $hostname == "none" ]; then

    ChangeHostName

  else

    echo "HOST Name: "$hostname

  fi

   

8、写一脚本,接受一个用户名为参数;

   (1) 如果用户的id号为0,则显示其为管理员;

   (2) 如果用户的id号大于0且小于500, 则显示其为系统用户;

   (3) 否则,则显示其为普通用户;

#!/bin/bash

#

#echo then user id info

declare -i i_uid

declare -i uid_type 

if [ $# -lt 1 ]; then

  echo "\"Userage: `basename $0`  args.\"  args for username."

fi

if id $1 &> /dev/null ; then 

 i_uid=`id -u $1`

 if [ $i_uid -eq 0 ]; then

   uid_type=0

 elif

   [ $i_uid -lt 501 ]; then

   uid_type=1

 else

   uid_type=2 

 fi

 case $uid_type in 

 0)

   echo "User:$1 is root user."

 ;;

 1)

   echo "User:$1 is a system user."

 ;;

 *)

   echo "User:$1 is a comma user."

 esac

else

  echo "$1: No such user!"  

fi

   

   

10、写一个脚本,传递一个用户名参数给脚本;

   (1) 如果用户的id号大于等于500,且其默认shell为以sh结尾的字符串,则显示“a user can log system.”类的字符串;

   (2) 否则,则显示无法登录系统;

#!/bin/bash

#

#echo shell can be login into system

declare -i idno

if [ $# -lt 1 ]; then

  echo "Useage: `basename $0` args .(args for username)"

  exit 2

fi

if id $1 &> /dev/null ; then

  idno=`id -u $1`

  if [ $idno -ge 500 ] ; then

    if `grep $1 /etc/passwd | grep sh$ &> /dev/null` ; then

      echo "User:$1 can log system."

    else

      echo "User:$1 can not login to system."

    fi

  else

    echo "User:$1 can not login to system."

  fi

else

  echo "$1: no such user!"

fi

  

11、写一个脚本,完成如下任务 :

   (1) 按顺序分别复制/var/log目录下的每个直接文件或子目录至/tmp/test1-testn目录中;

   (2) 复制目录时,才使用cp -r命令;

   (3) 复制文件时使用cp命令;

   (4) 复制链接文件时使用cp -d命令;

   (5) 余下的所有类型,使用cp -a命令;

#!/bin/bash

#

#copy file to /tmp/test1-testn

sdir=/var/log

ddir=/tmp/test1-testn

files=`ls $sdir`

if [ ! -d $ddir ]; then

  mkdir -pv $ddir

fi

cd $sdir

for i in $files ; do

  if [ -L $i ] ; then

    filetype="s"

  elif

    [ -d $i ] ; then

    filetype="d"

  elif

    [ -f $i ] ; then

    filetype="f"

  else

    filetype="o"

  fi

case $filetype in

  s)

   cp -d $i $ddir

  # echo "cp -d $i"

   ;;

  d)

   cp -r $i $ddir

  # echo "cp -r $i"

   ;;

  f)

   cp $i $ddir

  # echo "cp $i"

   ;;

   

  *)

   cp -a $i $ddir

  # echo "cp -a $i"

   ;;

esac

done

   

   

   

原创文章,作者:马哥Net19_小斌斌,如若转载,请注明出处:http://www.178linux.com/22027

(0)
马哥Net19_小斌斌马哥Net19_小斌斌
上一篇 2016-07-07
下一篇 2016-07-07

相关推荐

  • shell脚本编程之一

    shell脚本编程之一 shell脚本基础 shell脚本是包含一些命令或声明,并符合一定格式的文本文件 格式要求:首行shebang机制 #!/bin/bash #!/usr/bin/python #!/usr/bin/perl shell脚本的用途有: 自动化常用命令 执行系统管理和故障排除 常见简单的应用程序 处理文本或文件 创建shell脚本 第一步…

    Linux干货 2016-08-18
  • linux下安装配置DHCP服务器

    前提是已经安装了 core 及 base 两个组   1 2 3 4 5 # cat /etc/redhat-release   Red Hat Enterprise Linux Server release 6.8 (Santiago)&…

    Linux干货 2017-05-03
  • bash的特性和目录管理命令

    bash的特性和目录管理命令 bash特性     1. 命令补全机制: 所谓的命令补全,就是当输入命令的前几个字符的时候,按下tab,此时,bash根据输入的字符串,到path路径下进行寻找,把找到的且能唯一根据这个字符串标识的命令,予以补全。 如果根据这个字符串能在一个目录下面找到多个相同的命令,则再按一下tab就能列出所有…

    Linux干货 2016-10-29
  • N22-第六周作业

    请详细总结vim编辑器的使用并完成以下练习题      vim是模式化的文本编辑器。在不同模式下,每一次按键的效果都不一样。vim有三种工作模式,分别是编辑模式,插入模式和末行模式。编辑模式是打开vim后的默认模式,用于查看文本或进行复制,粘贴,删除等编辑命令。插入模式是为了向文本中输入信息。末行模式是vim自带的命令行接口,能…

    Linux干货 2016-09-26
  • 实现NFS为lamp环境web站点提供共享存储

    1.实验需求 (1)nfs server导出/data/application/web,在目录中提供wordpress; (2)nfs client挂载nfs server导出的文件系统,至/var/www/html; (3)客户端1(lamp)部署wordpress,并让其正常访问,要确保正常发文章,上传图片。 (4)客户端2(lamp),挂载nfs se…

    Linux干货 2017-05-02
  • N22-第三周作业

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

    Linux干货 2016-08-28

评论列表(2条)

  • 马哥教育
    马哥教育 2016-07-07 11:34

    写的很好,排版还可以在漂亮一点,加油

    • 马哥Net19_小斌斌
      马哥Net19_小斌斌 2016-07-25 22:58

      @马哥教育排版一提交就变了,有什么方法可以排得好点呢?