diff options
author | Tim Heaney <oylenshpeegul@gmail.com> | 2016-10-02 13:16:12 -0400 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2016-10-02 19:16:12 +0200 |
commit | 81975893a7c1ac2dbc4d0db0c16864d751f6c845 (patch) | |
tree | 56cdbd4e5a69b8cf7e5757e7f15458ebc8158777 /bash.html.markdown | |
parent | c9478229815195ba8b68623dea981986116b3d69 (diff) |
Reword pwd comments (#2402)
Getting is redundant.
Observe, not observer.
Diffstat (limited to 'bash.html.markdown')
-rw-r--r-- | bash.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bash.html.markdown b/bash.html.markdown index c5260915..7b7a3eef 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -96,10 +96,10 @@ echo "Script's arguments separated into different variables: $1 $2..." # Now that we know how to echo and use variables, # let's learn some of the other basics of bash! -# Getting our current directory is available through the command `pwd`. +# Our current directory is available through the command `pwd`. # `pwd` stands for "print working directory". # We can also use the builtin variable `$PWD`. -# Observer that the following are equivalent: +# Observe that the following are equivalent: echo "I'm in $(pwd)" # execs `pwd` and interpolates output echo "I'm in $PWD" # interpolates the variable |