1、編寫(xiě)腳本 createuser.sh,實(shí)現(xiàn)如下功能:使用一個(gè)用戶(hù)名做為參數(shù)肩杈,如果指定參數(shù)的用戶(hù)存在,就顯示其存在解寝,否則添加之;顯示添加的用戶(hù)的id號(hào)等信息
vim createuser.sh
#!/bin/bash
read -p "請(qǐng)輸入一個(gè)用戶(hù)名:" User
id $User &> /dev/nll
idUser=$?
echo $idUser
if [[ "$idUser" -eq 0 ]];then
echo "用戶(hù) $User 已存在"
else
echo "用戶(hù) $User不存在扩然,并自動(dòng)創(chuàng)建該用戶(hù)。"
useradd $User
echo `用戶(hù) $User 的信息為: id $User`
fi
2聋伦、編寫(xiě)生成腳本基本格式的腳本夫偶,包括作者,聯(lián)系方式嘉抓,版本索守,時(shí)間,描述等
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: xxxxx")
call setline(5,"#QQ: xxxxx")
call setline(6,"#email: xxxxx@qq.com")
call setline(7,"#version: 1.0")
call setline(8,"#date: ".strftime("%Y-%m-%d"))
call setline(9,"#description: xxxxx")
call setline(10,"#***********************************************")
endif
endfunc
3抑片、查找/etc目錄下大于1M且類(lèi)型為普通文件的所有文件
[root@centos7 ~]#ll find /etc -size +1M -type f
4卵佛、打包/etc/目錄下面所有conf結(jié)尾的文件,壓縮包名稱(chēng)為當(dāng)天的時(shí)間,并拷貝到/usr/local/src目錄備份截汪。
[root@centos7 ~]#find /etc/ -name "*.conf" | xargs tar cvf /usr/local/src/`date +%F`.tar
5疾牲、查找當(dāng)前系統(tǒng)上沒(méi)有屬主或?qū)俳M,且最近一個(gè)周內(nèi)曾被訪(fǎng)問(wèn)過(guò)的文件或目錄
[root@centos7 ~]#find / ( -nouser -o -nogroup ) -atime +7 ( -type f -o -type d ) -ls
6衙解、查找/etc目錄下至少有一類(lèi)用戶(hù)沒(méi)有執(zhí)行權(quán)限的文件
[root@centos7 ~]#find /etc/ -not -perm -111 -ls