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

Fix a typo

This commit is contained in:
aneasystone 2015-08-19 23:07:46 +08:00
parent 30ec1ff326
commit 4a3a934d0a

View File

@ -47,7 +47,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 souring a script as well. Scripts are typically executed in a different environment, as the child process of the command shell (namely subshell). To execute a script in the current context, use `source scriptname`, or simply `. scriptname`.
- Learn sourcing a script as well. Scripts are typically executed in a different environment, as the child process of the command shell (namely subshell). To execute a script in the current context, use `source scriptname`, or simply `. scriptname`.
- 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).