1
0
mirror of https://github.com/jlevy/the-art-of-command-line.git synced 2025-01-04 03:02:06 +02:00

Mention appending with >>.

Fixes #151.
This commit is contained in:
Joshua Levy 2015-07-03 00:54:30 -07:00
parent f4789f0aa4
commit d623fee2e0

View File

@ -51,7 +51,7 @@ Notes:
- 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`.
- Learn about redirection of output and input using `>` and `<` and pipes using `|`. Learn about stdout and stderr.
- Learn about redirection of output and input using `>` and `<` and pipes using `|`. Know `>` overwrites the output file and `>>` appends. Learn about stdout and stderr.
- Learn about file glob expansion with `*` (and perhaps `?` and `{`...`}`) and quoting and the difference between double `"` and single `'` quotes. (See more on variable expansion below.)