第五周作业

1、编写脚本 createuser.sh,实现如下功能:使用一个用户名做为参数,如果 指定参数的用户存在,就显示其存在,否则添加之;显示添加的用户的id号等信息

#!/bin/bash
[ $# -eq 0 ] && echo "没有参数,请输入一个参数";exit 10

id $1 &> /dev/null
if [ $? -eq 0 ] ;then
        echo "$1 is exits "
    elif [ $? -eq 1 ];then
        useradd $1 &> /dev/null
        echo  "`id $1`"
    else
        break;
fi

chmod +x /data/createuser.sh

2、编写生成脚本基本格式的脚本,包括作者,联系方式,版本,时间,描述等

vim ~/.vimrc
autocmd BufNewFile *.sh exec ":call SetTitle()"
func SetTitle()
     if expand("%:e")=='sh'
             call setline(1,"#!/bin/bash")
             call setline(2,"#")
             call setline(3,"#*************************************")
             call setline(4,"#author:                yyang")
             call setline(5,"#QQ:                    330303804")
             call setline(6,"#email:                 [email protected]")
             call setline(7,"#version:               1.0")
             call setline(8,"#date:                  ".strftime("%Y-%m-%d"))
             call setline(9,"#description:           script")
             call setline(10,"#*************************************")
 
     endif
 
endfunc

3、查找/etc目录下大于1M且类型为普通文件的所有文件

find /etc  -size +1M  -type f

4、打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录备份。

find /etc/ -name *.conf > tmp.list ;tar -T tmp.list -zcvf `date -d "now" +%F`.gz ;cp -a `date -d "now" +%F`.gz /usr/local/src/

5、查找当前系统上没有属主或属组,且最近一个周内曾被访问过的文件或目录

find /  \( -nouser -o -nogroup \) -a -atime -7 -a \( -type f -o -type d \)

6、查找/etc目录下至少有一类用户没有执行权限的文件

find /etc/ -not -perm  -111 

你可能感兴趣的:(第五周作业)