找資料夾
find / -name 資料夾名稱 -type d
找含有 text_text 的文字
find . -exec grep -H "text_text" {} \;
找/home資料夾下面的.c檔內含有include的文字
find /home -name "*.c" -exec grep -H "include" {} \;
找/home資料夾下面前十大檔案
du -a /home | sort -n -r | head -n 10
凍仁的解壓縮指令大全
清除arp cache
ip -s -s neigh flush all
列出所有arp cache
arp -n
加入一條新的arp hw address
arp -s <host> <hwaddr>
刪除一條舊的arp
arp -d <host>
123