歡迎光臨
每天分享高質量文章

Cheat : 一個實用 Linux 命令示例集合 | Linux 中國

我們中的許多人經常檢視 man 頁面 來瞭解命令開關(選項),它會顯示有關命令語法、說明、細節和可用的選項,但它沒有任何實際的例子。因此,在組合成一個我們需要的完整命令時會遇到一些麻煩。
— Magesh Maruthamuthu


本文導航
編譯自 | https://www.2daygeek.com/cheat-a-collection-of-practical-linux-command-examples/ 
 作者 | Magesh Maruthamuthu
 譯者 | geekpi

我們中的許多人經常檢視 man 頁面[1] 來瞭解命令開關(選項),它會顯示有關命令語法、說明、細節和可用的選項,但它沒有任何實際的例子。因此,在組合成一個我們需要的完整命令時會遇到一些麻煩。

你確實遇到這個麻煩而想要一個更好的解決方案嗎?我會建議你試一下 cheat

Cheat 是什麼

cheat[2] 允許你在命令列中建立和檢視互動式的速查表cheatsheet。它旨在幫助提醒 *nix 系統管理員他們經常使用但還沒頻繁到會記住的命令的選項。

如何安裝 Cheat

cheat 是使用 python 開發的,所以可以用 pip 來在你的系統上安裝 cheat

pip 是一個與 setuptools 捆綁在一起的 Python 模組,它是在 Linux 中安裝 Python 包推薦的工具之一。

對於 Debian/Ubuntu 使用者,請使用 apt-get 命令[3]apt 命令[4]來安裝 pip

  1. [對於 Python2]

  2. $ sudo apt install python-pip python-setuptools

  3. [對於 Python3]

  4. $ sudo apt install python3-pip

RHEL/CentOS 官方倉庫中沒有 pip,因此使用 EPEL 倉庫[5],並使用 YUM 命令[6]安裝 pip

  1. $ sudo yum install python-pip python-devel python-setuptools

對於 Fedora 系統,使用 dnf 命令[7]來安裝 pip

  1. [對於 Python2]

  2. $ sudo dnf install python-pip

  3. [對於 Python3]

  4. $ sudo dnf install python3

對於基於 Arch Linux 的系統,請使用 Pacman 命令[8] 來安裝 pip

  1. [對於 Python2]

  2. $ sudo pacman -S python2-pip python-setuptools

  3. [對於 Python3]

  4. $ sudo pacman -S python-pip python3-setuptools

對於 openSUSE 系統,使用 Zypper 命令[9]來安裝 pip

  1. [對於 Python2]

  2. $ sudo pacman -S python-pip

  3. [對於 Python3]

  4. $ sudo pacman -S python3-pip

用 pip 來在你的系統上安裝 cheat

  1. $ sudo pip install cheat

如何使用 Cheat

執行 cheat,然後按相應的命令來檢視速查表,作為例子,我們要來看下 tar 命令的例子。

  1. $ cheat tar

  2. # To extract an uncompressed archive:

  3. tar -xvf /path/to/foo.tar

  4. # To create an uncompressed archive:

  5. tar -cvf /path/to/foo.tar /path/to/foo/

  6. # To extract a .gz archive:

  7. tar -xzvf /path/to/foo.tgz

  8. # To create a .gz archive:

  9. tar -czvf /path/to/foo.tgz /path/to/foo/

  10. # To list the content of an .gz archive:

  11. tar -ztvf /path/to/foo.tgz

  12. # To extract a .bz2 archive:

  13. tar -xjvf /path/to/foo.tgz

  14. # To create a .bz2 archive:

  15. tar -cjvf /path/to/foo.tgz /path/to/foo/

  16. # To extract a .tar in specified Directory:

  17. tar -xvf /path/to/foo.tar -C /path/to/destination/

  18. # To list the content of an .bz2 archive:

  19. tar -jtvf /path/to/foo.tgz

  20. # To create a .gz archive and exclude all jpg,gif,... from the tgz

  21. tar czvf /path/to/foo.tgz --exclude=\*.{jpg,gif,png,wmv,flv,tar.gz,zip} /path/to/foo/

  22. # To use parallel (multi-threaded) implementation of compression algorithms:

  23. tar -z ... -> tar -Ipigz ...

  24. tar -j ... -> tar -Ipbzip2 ...

  25. tar -J ... -> tar -Ipixz ...

執行下麵的命令檢視可用的速查表。

  1. $ cheat -l

進入幫助頁面獲取更多詳細資訊。

  1. $ cheat -h


via: https://www.2daygeek.com/cheat-a-collection-of-practical-linux-command-examples/

作者:Magesh Maruthamuthu[11] 譯者:geekpi 校對:wxy

本文由 LCTT 原創編譯,Linux中國 榮譽推出

LCTT 譯者

geekpi ? ?
共計翻譯:623 篇
貢獻時間:1530 天


推薦文章

< 左右滑動檢視相關文章 >

點選圖片、輸入文章 ID 或識別二維碼直達

贊(0)

分享創造快樂

© 2024 知識星球   網站地圖