盤點(diǎn) 20 個(gè)最受歡迎的 Linux 命令
本文根據(jù)commandlinefu網(wǎng)站的歷史排名,篩選出了前20個(gè)得票***的Linux命令??纯茨愣寄苁炀毷褂昧藛??
1. 以 root 帳戶執(zhí)行上一條命令
- sudo !!
2. 利用 Python 搭建一個(gè)簡(jiǎn)單的 Web 服務(wù)器
可通過 http://$HOSTNAME:8000訪問
- python -m SimpleHTTPServer
3. 切換到上一次訪問的目錄
- cd -
4. 將上一條命令中的 foo 替換為 bar,并執(zhí)行
- ^foo^bar
5. traceroute + ping
- mtr google.com
6. 快速調(diào)用一個(gè)編輯器來編寫一個(gè)命令
- ctrl-x e
7. 執(zhí)行一個(gè)命令,但不保存在命令歷史記錄中
- <space>command
8. 重新初始化終端
- reset
9. 調(diào)出上次命令使用的參數(shù)
- 'ALT+.' or '<ESC> .'
10. 以更加清晰的方式顯示當(dāng)前系統(tǒng)掛載的文件系統(tǒng)
- mount | column -t
11. 在給定的時(shí)間執(zhí)行命令
- echo "ls -l" | at midnight
12. 通過DNS控制臺(tái)查詢維基百科
- dig +short txt <keyword>.wp.dg.cx
13. 從80端口向你本地的2001端口開啟隧道
- ssh -N -L2001:localhost:80 somemachine
14. 快速訪問ASCII表
- man ascii
15. 獲取你的外部IP地址
- curl ifconfig.me
16. !! 表示重復(fù)執(zhí)行上一條命令,并用 :gs/foo/bar 進(jìn)行替換操作
- !!:gs/foo/bar
17. 輸出你的麥克風(fēng)到遠(yuǎn)程機(jī)器的揚(yáng)聲器
- dd if=/dev/dsp | ssh -c arcfour -C username@host dd of=/dev/dsp
18. 掛載一個(gè)臨時(shí)的內(nèi)存分區(qū)
- mount -t tmpfs tmpfs /mnt -o size=1024m
19. 以SSH方式掛載目錄/文件系統(tǒng)
- sshfs name@server:/path/to/folder /path/to/mount/point
20. 通過curl更新Twitter
- curl -u user:pass -d status="Tweeting from the shell" <a href="http://twitter.com/statuses/update.xml">http://twitter.com/statuses/update.xml</a>