其他分享
首页 > 其他分享> > 第四周

第四周

作者:互联网

1、统计出/etc/passwd文件中其默认shell为非/sbin/nologin的用户个数,并将用户都显示出来

[root@centos7 data]# grep -v '/sbin/nologin$' /etc/passwd | cat -n

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

[root@centos7 data]# sort -t: -k3 -rn /etc/passwd | cut -d: --output-delimiter=' ' -f1,3,7 | head -1
nfsnobody 65534 /sbin/nologin

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

[root@centos7 data]# netstat -ant | tr -s ' ' | cut -d' ' -f 5 | cut -d':' -f 1 | tr -dc '0-9.\n' | sort -nr
192.168.100.1
0.0.0.0
0.0.0.0
0.0.0.0
0.0.0.0
0.0.0.0


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

[root@centos7 data]# cat user.sh
#! /bin/bash
read -p "Please input a username: " user
[ -z "$user" ] && { echo "You input none!";exit 1; }

id $user &> /dev/null && { echo -e "\033[1;31mThe user $user is exist\033[0m"; exit 10; }

useradd $user &> /dev/null && { echo magedu | passwd --stdin $user &> /dev/null; echo -e "\033[1;32mThe user $user create successfully.\033[0m" ; id $user; } || { echo Something error!; exit 20; } 

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

[root@centos7 ~]#cat .vimrc
set nu
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set ignorecase
set cursorline
set autoindent
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:                lisonghe")
        call setline(5,"#QQ:                    1021208266")
        call setline(6,"#Date:                  ".strftime("%Y-%m-%d"))
        call setline(7,"#FileName:              ".expand("%"))
        call setline(8,"#Description:           The test script")
        call setline(9,"#Copyright (C):         ".strftime("%Y")." All rights reserved")
        call setline(10,"#****************************************************************")
        call setline(11,"")
        endif
endfunc
autocmd BufNewFile * normal G

标签:set,0.0,centos7,call,user,setline,四周
来源: https://www.cnblogs.com/kfscott/p/12865348.html