1
0
mirror of https://github.com/jlevy/the-art-of-command-line.git synced 2024-12-12 10:45:00 +02:00

Added a note to use eg

https://github.com/srsudar/eg
This commit is contained in:
Talal Obeid 2015-06-22 10:38:40 -04:00
parent 81afeec04c
commit df173f4bb2

View File

@ -37,7 +37,7 @@ Notes:
- To keep this to one page, content is implicitly included by reference. You're smart enough to look up more detail elsewhere once you know the idea or command to Google. Use `apt-get`/`yum`/`dnf`/`pacman`/`pip`/`brew` (as appropriate) to install new programs.
- Use [Explainshell](http://explainshell.com/) to get a helpful breakdown of what commands, options, pipes etc. do.
- Incorporate [eg](https://github.com/srsudar/eg) in your daily workflow for quick and concise examples of how a certain command is used within the command-line itself.
## Basics
@ -64,6 +64,8 @@ Notes:
- Learn to use `apt-get`, `yum`, `dnf` or `pacman` (depending on distro) to find and install packages. And make sure you have `pip` to install Python-based command-line tools (a few below are easiest to install via `pip`).
## Everyday use
- In Bash, use **Tab** to complete arguments and **ctrl-r** to search through command history.