grep a | b 這個是a或b的關係
grep a | grep b這個是a與b的關係
grep -c 5 『關鍵字』 顯示關鍵字前後五行的內容
樣例:我個人常組合這兩個關鍵命令組合使用
e.g. cat 檔名 | grep -c 5 '關鍵字'
cd 指定檔案路徑
cd .. 跳轉到上一級目錄
cd ../>> 跳轉到上兩級目錄
cd ~ 跳轉到home目錄
-l (use a long listing format 以長列表方式顯示(詳細資訊方式))p.s.簡單記成詳細
-r (reverse order while sorting (反序))p.s.簡單記成reverse反轉
-t (sort by modification time 按修改時間排序(最新的在最前面))p.s.簡單記成time按時間
ls -l 簡單地列出檔案列表
ls -lt 按照時間降序(最新的放在前面)
ls -ls(注意s是大寫) 按照檔案大小排序
ls -lrt 按照時間公升序(就是老的在前,忘掉這個吧,一般咱們找的也都是最近修改過的)
ls *.war 列出所有的.war格式的檔案,可以過濾掉無用的檔案,一般我是通過上面的命令加這個型別寫
e.g. ls -lt *.war 就是我按照最新的修改時間來看剛發的war包
Linux查日誌小技巧
以下是一些linux伺服器下查日誌的小技巧,為自己做乙個記錄 1.根據關鍵字查詢指定檔案grep 30015 c0a89623 440294 21173 bizlog.txt2.根據多個關鍵字查詢指定檔案 或關係grep e 30015 c0a89623 440294 21173 error biz...
linux的命令小總結
shutdown h now立即關機 shutdown r now 或 reboot現在重新啟動計算機 logout 使用者登出pwd 顯示當前目錄cd 改變目錄 is 列出檔案和目錄 is a 顯示隱藏檔案 is i 顯示長列 mkdir 建立目錄 rmdir 刪除空目錄 touch 建立空目錄c...
linux 查日誌常用命令
先必須了解兩個最基本的命令 tail 尾巴 head 頭 tail n 10 test.log 查詢日誌尾部最後10行的日誌 tail n 10 test.log 查詢10行之後的所有日誌 head n 10 test.log 查詢日誌檔案中的頭10行日誌 head n 10 test.log 查詢...