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

Suggest apt instead of apt-get

Pull request #567 has replaced `apt-get` with `apt` suggestion.
This commit is contained in:
Peter Kokot 2021-01-24 16:05:37 +01:00
parent f79f79cfe6
commit af0dee0d81

View File

@ -73,7 +73,7 @@ Notes:
- Know regular expressions well, and the various flags to `grep`/`egrep`. The `-i`, `-o`, `-v`, `-A`, `-B`, and `-C` options are worth knowing.
- 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`).
- Learn to use `apt`, `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