cd . 當前目錄.. 返回上一級目錄 ../../../返回多級目錄 grep "目標信息" 目標地址 -v :顯示沒有被匹配的信息 mkdir -p:創建多級目錄 mkdir -p /oldboy/test/ 目錄存在也可以反覆創建目錄命令,不會出現報錯 alias 別名 臨時取消別名 \後面添 ...
cd . 當前目錄.. 返回上一級目錄 ../../../返回多級目錄
grep "目標信息" 目標地址
-v :顯示沒有被匹配的信息
mkdir
-p:創建多級目錄 mkdir -p /oldboy/test/
目錄存在也可以反覆創建目錄命令,不會出現報錯
alias 別名
臨時取消別名 \後面添加命令 或者 /bin/cp jia 加上命令
臨時添加命令 alias grep="grep --color"
永久取消別名 vi ~/.bashrc 刪除設置別名那一行
永久添加別名 vi ~/.bashrc 添加一行命令alias grep="grep --color" 保存後source alias
企業實踐:給危險的rm命令設置保險措施(設置別名)
第一個裡程:臨時配置別名
alias rm='echo "datainfo can not del"'
第二個裡程:編寫配置文件,使之別名功能永久生效
echo "alias rm='echo "datainfo can not del"'" >>/etc/profile
[root@shhaioldboy02-LNB ~]# tail -1 /etc/profile
alias rm='echo datainfo can not del'
第三個裡程:載入配置文件
source /etc/profile
第四個裡程:取消預設系統的別名功能(rm)
PS:系統中的一些預設配置,建議編輯時不要刪除掉,可以臨時註釋掉
vim /root/.bashrc
#alias rm='rm -i'
vi/vim
i 從當前行的行首進行編輯
o 從當前行的後一行
O 從當前行的前一行
u 還原上個操作
g 快速切換到首行
G 快速切換到尾行
系統中預設設置不建議刪除,建議註釋。
別名單引號裡面一定是命令 需要英文格式
三劍客取行
sed -n "20,30p" ett.txt -i 替換文件內容信息 s 搜索到要替換的文件信息 g全局搜索要替換的內容
awk 'NR==20,NR==30' ett
grep -A10 "20" ett.txt 從前往後取10行
grep -B10 "30" ett.txt 從後往前取10行
grep -C5 "25" ett.txt 從中間取行
實例:
只查看ett.txt文件(共50行)內第20到第30行的內容
創建模擬環境創建50行信息
seq 50 >/root/data/ett.txt
第一種方式:利用sed命令
[root@shhaioldboy02-LNB ~]# sed -n '20p' /root/data/ett.txt
20
[root@shhaioldboy02-LNB ~]# sed -n '20,30p' /root/data/ett.txt
20
21
22
23
24
25
26
27
28
29
30
第二種方式:利用awk命令
[root@shhaioldboy02-LNB ~]# awk 'NR==20' /root/data/ett.txt
20
[root@shhaioldboy02-LNB ~]# awk 'NR==20,NR==30' /root/data/ett.txt
20
21
22
23
24
25
26
27
28
29
30
[root@shhaioldboy02-LNB ~]#
第三種方法:利用grep命令
[root@shhaioldboy02-LNB ~]# grep "20" /root/data/ett.txt
20
[root@shhaioldboy02-LNB ~]# grep -A10 "20" /root/data/ett.txt
20
21
22
23
24
25
26
27
28
29
30
[root@shhaioldboy02-LNB ~]# grep "30" /root/data/ett.txt
30
[root@shhaioldboy02-LNB ~]# grep -B10 "30" /root/data/ett.txt
20
21
22
23
24
25
26
27
28
29
30
[root@shhaioldboy02-LNB ~]# grep "25" /root/data/ett.txt
25
[root@shhaioldboy02-LNB ~]# grep -C5 "25" /root/data/ett.txt
20
21
22
23
24
2 5
26
27
28
29
30
第四種反法 head -n 30 ett.txt|tail -ll 完成列印
第五種 :VI編輯器 行號設置:set nu 取消行號設置nonu
尋找文件並且替換:
sed ’s#目標文件#替換內容#g‘ -i 謹慎使用!!!!
instead ----代替!--lalala---!
find ./text/del.sh -type f name "*.sh"
[root@shhaioldboy02-LNB oldboy]# sed 's#oldboy#oldgirl#g' /oldboy/test/del.sh
oldgirl
[root@shhaioldboy02-LNB oldboy]# cat /oldboy/test/del.sh
oldboy
[root@shhaioldboy02-LNB oldboy]# sed -i 's#oldboy#oldgirl#g' /oldboy/test/del.sh
[root@shhaioldboy02-LNB oldboy]# cat /oldboy/test/del.sh
oldgirl
補充:利用sed命令修改文件時,規範使用方法
01. 在修改前,先模擬執行測試替換功能(不要直接加上-i參數)
02. 在修改前,進行文件備份
sed -i.bak 's#oldgirl#oldboy#g' /oldboy/test/del.sh
說明:-i參數後不要在接上任何其他參數信息,其他參數要寫在-i參數之前
綜合:
第一種反法 find ./text/del.sh -type f name "*.sh" |xargs sed 's#oldboy#oldgirl#g'
find ./text/del.sh -type f name "*.sh" |xargs cat
第二種方法sed -i.bak 's#oldbaoy#oldgil#g' $(find /oldbaoy/ -type f -name "*.sh")
第三種方法find /oldbaoy/ -type f -name "*.sh" -exec sed -i "s#oldboy#oldgirl#g" {} \;
-exec 將find命令找出的信息給後面的命令執行
find ./ type f -name "*.log" -exec rm -f {} \;