Softened Vim-bias

Reworded based on the discussion in #124.
pull/129/head
Nils Winkler 2015-06-26 13:42:02 +02:00
parent 7f32e9296d
commit 0cc19b1c15
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ Notes:
- Learn basic Bash. Actually, type `man bash` and at least skim the whole thing; it's pretty easy to follow and not that long. Alternate shells can be nice, but Bash is powerful and always available (learning *only* zsh, fish, etc., while tempting on your own laptop, restricts you in many situations, such as using existing servers).
- Learn at least one text-based editor well. Ideally Vim (`vi`), as there's really no competition for random editing in a terminal (even if you use Emacs, a big IDE, or a modern hipster editor most of the time).
- Learn at least one text-based editor well. The most common ones are Vim (`vi`), Emacs, Nano and Ed. Knowing one of these will allow you to make changes on most Linux-based systems, as these editors are present in most default setups.
- Know how to read documentation with `man` (for the inquisitive, `man man` lists the section numbers, e.g. 1 is "regular" commands, 5 is files/conventions, and 8 are for administration). Find man pages with `apropos`. Know that some commands are not executables, but Bash builtins, and that you can get help on them with `help` and `help -d`.