[root@centos6 ~]#cat /etc/passwd |grep -c nologin 30
[root@centos7 ~]#cat /etc/passwd |sort -nr -t: -k3 |cut -d: -f1,3,7 |head -1 nfsnobody:65534:/sbin/nologin
[root@centos6 ~]#ss -nt | grep ESTAB |tr -s " " : |cut -d: -f6 |sort |uniq -c|sort -nr 6 192.168.43.1 3 192.168.43.107 [root@centos7 ~]#ss -nt | sed -nr '/^ESTAB/s@.*[[:space:]]+([0-9.]+):[0-9]+.*@\1@p' | sort |uniq -c | sort -nr 6 192.168.43.1 2 192.168.43.128
#!/bin/bash PASSWD=123456 if [ -z "$1" ];then echo "請輸入一個須要建立的用戶名!" elif `id $1 &> /dev/null`;then echo "用戶已經存在!" else useradd $1 &> /dev/null echo $PASSWD |passwd --stdin $1 &> /dev/null echo $user 已建立 echo UID是`id -u $1` echo passwd是${PASSWD} exit fi
vim ~/.vimrc 寫入一下內容 set ai set ignorecase set tabstop=2 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: wangyan") call setline(6,"#Date: ".strftime("%Y-%m-%d")) call setline(7,"#FileName: ".expand("%")) 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
架構班小夥伴看這裏:redis
一、安裝配置redis的cluster集羣shell
二、安裝配置memcached高可用vim
三、安裝vmware esxicentos