linux查漏命令

  1. df -THi 能夠顯示inode的使用狀況node

  2. vimdiff file1 file2可視化對比文件linux

  3. seq 5 打印數列正則表達式

  4. sed -i 's/source-word/replace-word/g' file.txt 非交互式編輯替換文件
    sed -n '2p' /etc/passwd 顯示行
    sed 's#\(ddd\) \(kkk\)#\1 \2#g' 組內容提取
    ifconfig | sed -n 's#^.*addr:\([0-9].* \) Bcast:\([0-9].*\)  Ma.*$#\1 \2#gp'vim

  5. grep '\<word\>' file 正則表達式查詢只符合文件中含有word單詞的windows

  6. unix2dos file.txt  dos2unix file.txt  轉換文本格式bash

  7. cat -A file 可查看文本格式 (windows格式 .^M$)  (linux格式   .$)ide

  8. grep -E 'keywork1|' 或者 egrep 'keywork1|keyword2'unix

  9. cat -n 顯示行號 與 nl 命令 ci

  10. seq 5|tac tac 反轉內容 {1..5}文檔

  11. head -5 /etc/passwd|nl , head -5 /etc/passwd |cat  -n 顯示同樣

  12. tree -L 顯看目錄層級

  13. echo -n 不換行

  14. history -d num  -c -d 刪除行的歷史命令

  15. chattr +i -i 鎖定文檔

  16. ls    ?.log       [1-5].log 顯示1.log 2.log 3 .log 4.log 5.log

  17. last lastlog 顯示登錄信息

  18. ls -F ; ls -p 分類顯示目錄或者文件

  19. cut -d指定分隔符,-f 指定列  -c指定第幾個字符

  20. type command 查看今天類型(是否bash內置)

  21. help command 查看bash內置命令幫助

  22. tr 替換字符echo "hello world" |tr 'a-z' 'A-Z'   變換大小寫echo "hello 123 world 45345" |tr -d '0-9' 刪除數字ifconfig eth0|sed -n '2p'|tr -d 'a-z|A-Z|:' 刪除大小寫字母及:ifconfig |sed -n 2p|tr -d 'a-zA-Z:' 刪除大小寫字母及:ifconfig eth0|sed -n 2p|tr -d -c  '0-9 . '  保留數字及.

相關文章
相關標籤/搜索