码迷,mamicode.com
首页 > 其他好文 > 详细

week04

时间:2020-07-06 01:02:16      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:自动   存在   echo   toc   pass   time   normal   文件中   expand   

1、统计出/etc/passwd文件中其默认shell为非/s bin/nologin的用户个数,并将用户都显示出来
[root@centos7 ~]# grep -v  "/sbin/nologin" /etc/passwd |cut -d: -f1
root
sync
shutdown
halt
zjw
mageia
slackware

2、查出用户UID最大值的用户名、UID及shell类型

[root@centos7 ~]# getent passwd  `cat /etc/passwd | cut -d: -f3 |sort -nr |head -n1`
nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/sbin/nologin

3、统计当前连接本机的每个远程主机IP的连接数,并按从大到小排序

[root@centos7 ~]# netstat -nt |tr -s " " : |cut -d: -f6 |sort |uniq -c|sort -nr|grep -vE "Foreign"
      6 10.0.0.1
      1 10.0.0.5
      1 10.0.0.4
      1 

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

#!/bin/bash
#
#********************************************************************
#Author:        zhangjiwei
#QQ:            1040204242
#Date:          2020-07-05
#FileName:     createuser.sh
#URL:           https://blog.51cto.com/12514160
#Description:      The test script
#Copyright (C):     2020 All rights reserved
#********************************************************************

#自动添加用户
useradd $1 &>/dev/null
if [ $? -ne 0 ];then
    echo -e "\033[33m 用户$1已经存在\e[0m"
    else
    echo -e "\033[33m 用户$1创建成功\e[0m"
    echo -e "$1的UID:\033[33m`getent passwd 55kai |cut -d: -f3`\e[0m"
    echo -e "$1的GID:\033[33m`getent passwd 55kai |cut -d: -f4`\e[0m"
    echo -e "$1的SELL:\033[33m`getent passwd 55kai |cut -d: -f7`\e[0m"
fi

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

#vim .vimrc
set ai
set nu
set cul 
set tabstop=4
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:        zhangjiwei") 
    call setline(5,"#QQ:            1040204242") 
    call setline(6,"#Date:          ".strftime("%Y-%m-%d"))                                          
    call setline(7,"#FileName:     ".expand("%"))
    call setline(8,"#URL:           https://blog.51cto.com/12514160")
    call setline(9,"#Description:      The test script") 
    call setline(10,"#Copyright (C):    ".strftime("%Y")." All rights reserved")
    call setline(11,"#********************************************************************") 
    call setline(12,"") 
    endif
endfunc
autocmd BufNewFile * normal G

week04

标签:自动   存在   echo   toc   pass   time   normal   文件中   expand   

原文地址:https://blog.51cto.com/12514160/2508780

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!