diff options
author | Adam Bard <github@adambard.com> | 2013-10-09 09:21:03 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-10-09 09:21:03 -0700 |
commit | dac3063ddf1781eeff8704f0b61d38a302b42db7 (patch) | |
tree | a3a3c419761608eb48397b71444f189e04866603 /bash.html.markdown | |
parent | 90461919cdd9672495b421c425510ff2f0a1e4c3 (diff) | |
parent | 925ded87809a5ae9f40a3c825324cb083eaba81e (diff) |
Merge pull request #375 from xakon/master
[perl/en] Fix some links at Perl tutorial
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 4d80545e..276bc31f 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -94,12 +94,12 @@ python2 hello.py 2> "error.err" # The output error will overwrite the file if it exists, if you want to # concatenate them, use ">>" instead. -# Commands can be substitued within other commands using $( ): +# Commands can be substituted within other commands using $( ): # The following command displays the number of files and directories in the # current directory. echo "There are $(ls | wc -l) items here." -# Bash uses a case statement that works similarily to switch in Java and C++: +# Bash uses a case statement that works similarly to switch in Java and C++: case "$VARIABLE" in #List patterns for the conditions you want to meet 0) echo "There is a zero.";; |