1、統(tǒng)計(jì)出/etc/passwd文件中其默認(rèn)shell為非/sbin/nologin的用戶個(gè)數(shù),并將用戶都顯示出來
成都創(chuàng)新互聯(lián)是一家專業(yè)提供枝江企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、H5建站、小程序制作等業(yè)務(wù)。10年已為枝江眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。[root@centos7 ~]# grep -v "/sbin/nologin" /etc/passwd |wc -l && grep -v "/sbin/nologin" /etc/passwd |cut -d ":" -f1
15
root
sync
shutdown
halt
rick
gentoo
docker
mongodb
redis
tomcat
nginx
ric
mageia
slackware
test
[root@centos7 ~]#
2、查出用戶UID大值的用戶名、UID及shell類型
方法一:
[root@centos7 ~]# cat /etc/passwd |sort -t: -k3 -nr |head -1 |cut -d: -f1,3,7
方法二:
[root@centos7 ~]# cat max_uid.sh
#!/bin/bash
uid=`cat /etc/passwd |cut -d ":" -f3`
for i in $uid
do
max=0
if [ $i -gt $max ]
then
max=$i
fi
done
grep $max /etc/passwd |cut -d ":" -f1,3,7
[root@centos7 ~]# sh max_uid.sh
test:2003:/bin/bash
[root@centos7 ~]# tail -3 /etc/passwd
mageia:x:1100:1100::/homenux:/bin/bash
slackware:x:2002:2019::/home/slackware:/bin/tcsh
test:x:2003:2003::/home/test:/bin/bash
[root@centos7 ~]#
3、統(tǒng)計(jì)當(dāng)前連接本機(jī)的每個(gè)遠(yuǎn)程主機(jī)IP的連接數(shù),并按從大到小排序
[root@centos7 ~]#ss -tnla |grep ESTAB |tr -s " " |cut -d " " -f5 |sort |uniq -c |sort -nr |head
119 127.0.0.1:3306
40 ::ffff:127.0.0.1:3306
21 ::ffff:59.39.91.244:3306
4 ::ffff:127.0.0.1:60009
2 127.0.0.1:55555
1 ::ffff:61.146.78.146:64634
1 ::ffff:61.143.130.174:30895
1 ::ffff:59.39.91.244:58830
1 ::ffff:59.39.91.244:58818
1 ::ffff:59.39.91.244:58263
4、編寫腳本createuser.sh,實(shí)現(xiàn)如下功能:使用一個(gè)用戶名做為參數(shù),如果 指定參數(shù)的用戶存在,就顯示其存在,否則添加之;顯示添加的用戶的id號等 信息
[root@centos7 ~]# cat createuser.sh
#!/bin/bash
#********************************************************************
#Author: rickzhu
#QQ: 1779526363
#Date: 2020-02-28
#FileName: createuser.sh
#URL: http://www.magedu.com
#Description: The test script
#Copyright (C): 2020 All rights reserved
#********************************************************************
if grep $1 /etc/passwd >/dev/null
then
echo "$1 is exist."
else
useradd $1
echo "`id $1`"
fi
[root@centos7 ~]# sh createuser.sh nginx
nginx is exist.
[root@centos7 ~]# sh createuser.sh test
uid=2003(test) gid=2003(test) groups=2003(test)
[root@centos7 ~]#
5、編寫生成腳本基本格式的腳本,包括作者,聯(lián)系方式,版本,時(shí)間,描述等
[root@centos7 ~]# cat createScript.sh
#!/bin/bash
#
#判斷當(dāng)前目錄是否有同名的腳本
if ls |grep $1 >>/dev/null
then
echo "$1 is exist" && exit 10
fi
cat <<EOF > $1 && vim + $1
#!/bin/bash
#
#********************************************************************
#Author: rickzhu
#QQ: 1779526363
#Date: `date +%F`
#FileName: $1
#Version 1
#URL: http://www.magedu.com
#Description: The $1 script
#Copyright (C): 2020 All rights reserved
#********************************************************************
EOF
[root@centos7 ~]#
[root@centos7 ~]# sh createScript.sh test.sh
#!/bin/bash
#
#********************************************************************
#Author: rickzhu
#QQ: 1779526363
#Date: 2020-02-28
#FileName: test.sh
#Version 1
#URL: http://www.magedu.com
#Description: The test.sh script
#Copyright (C): 2020 All rights reserved
#********************************************************************
~
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
分享文章:centos7系統(tǒng)有關(guān)shell命令的應(yīng)用-創(chuàng)新互聯(lián)
URL網(wǎng)址:http://www.rwnh.cn/article40/ccisho.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)網(wǎng)站建設(shè)、企業(yè)建站、網(wǎng)站設(shè)計(jì)、自適應(yīng)網(wǎng)站、全網(wǎng)營銷推廣、品牌網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容