df -THi 能夠顯示inode的使用狀況node
vimdiff file1 file2可視化對比文件linux
seq 5 打印數列正則表達式
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
grep '\<word\>' file 正則表達式查詢只符合文件中含有word單詞的windows
unix2dos file.txt dos2unix file.txt 轉換文本格式bash
cat -A file 可查看文本格式 (windows格式 .^M$) (linux格式 .$)ide
grep -E 'keywork1|' 或者 egrep 'keywork1|keyword2'unix
cat -n 顯示行號 與 nl 命令 ci
seq 5|tac tac 反轉內容 {1..5}文檔
head -5 /etc/passwd|nl , head -5 /etc/passwd |cat -n 顯示同樣
tree -L 顯看目錄層級
echo -n 不換行
history -d num -c -d 刪除行的歷史命令
chattr +i -i 鎖定文檔
ls ?.log [1-5].log 顯示1.log 2.log 3 .log 4.log 5.log
last lastlog 顯示登錄信息
ls -F ; ls -p 分類顯示目錄或者文件
cut -d指定分隔符,-f 指定列 -c指定第幾個字符
type command 查看今天類型(是否bash內置)
help command 查看bash內置命令幫助
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 . ' 保留數字及.