Shell指令碼中一些常用命令

2021-06-17 14:44:11 字數 391 閱讀 7630

1、pwd=`cat $jdbc_file | grep password | awk -f'=' ''`

就是說輸入文字是通過冒號 : 來區分欄位的,如果你不用-f宣告分隔符,那麼awk預設是用空格/tab來分隔欄位的。 比如你有 a.txt,內容是

hello world: this is world

如果你用 awk '' a.txt

那麼得到的是

hello world:

兩個字段分別是 hello 和world:

而如果你用 awk -f ':' ' a.txt

那麼得到就是

hello world this is world

兩個字段分別是 "hello world" 和 「this is world」了.

shell 一些常用命令

一般自己虛擬機器新安裝的centos才需要此配置 setenforce 是linux的selinux防火牆配置命令 執行setenforce 0 表示關閉selinux防火牆。getenforce 檢視當前模式 如果為disabled 就是已經關閉,如果enforce 就是強制的模式 1 不重啟的頭...

shell指令碼常用命令

basename 1.basename 是去除目錄後剩下的名字 example shell temp home temp 1.test shell base basename temp shell echo base 結果為 1.test 2.dirname 是取目錄 example shell t...

一些常用命令

7 12 chmod rwx rw rw u 檔案擁有者 g 所屬的使用者組 o 其它使用者 mount mount t 檔案型別 需要掛載的檔案系統 掛載點 umount umount 掛載點 tar c create 建立 x extract v verbose 顯示資訊 z gzip tar....