diff options
author | Liam Edwards-Playne <liamzebedee@yahoo.com.au> | 2015-05-20 11:23:55 +1000 |
---|---|---|
committer | Liam Edwards-Playne <liamzebedee@yahoo.com.au> | 2015-05-20 11:23:55 +1000 |
commit | 8909457ae46dc8fb151ef146acb3f6b8402f3407 (patch) | |
tree | 541cc1fa9423b4b1979fbaf47eda8b52c0791181 /bash.html.markdown | |
parent | 4d1506371033c9d649087d11a653f62aafd2591a (diff) |
fix spelling errors
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 ee783c14..c2312d7d 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -56,7 +56,7 @@ echo '$Variable' # String substitution in variables echo ${Variable/Some/A} -# This will substitute the first occurance of "Some" with "A" +# This will substitute the first occurence of "Some" with "A" # Substring from a variable Length=7 @@ -74,7 +74,7 @@ echo "Last program return value: $?" echo "Script's PID: $$" echo "Number of arguments: $#" echo "Scripts arguments: $@" -echo "Scripts arguments seperated in different variables: $1 $2..." +echo "Scripts arguments separated in different variables: $1 $2..." # Reading a value from input: echo "What's your name?" |