diff options
author | Jacob Ward <jacobward1898@gmail.com> | 2016-02-17 22:23:30 -0700 |
---|---|---|
committer | Jacob Ward <jacobward1898@gmail.com> | 2016-02-17 22:23:30 -0700 |
commit | 97cbeab8356fe72f487a2978ad22a82e4cddc128 (patch) | |
tree | 82c03eac43b904d158d16f56ed65811cb438394a | |
parent | 8dc3329730fcbcb2fd802dc65d2834a2eb2f1d21 (diff) |
[bash-jp/ja-jp] Corrected spelling. seperated -> separated
-rw-r--r-- | ja-jp/bash-jp.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ja-jp/bash-jp.html.markdown b/ja-jp/bash-jp.html.markdown index 88e5ff1c..ea8fa49f 100644 --- a/ja-jp/bash-jp.html.markdown +++ b/ja-jp/bash-jp.html.markdown @@ -66,7 +66,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..." # 入力値の読み込み echo "What's your name?" @@ -117,7 +117,7 @@ echo "There are $(ls | wc -l) items here." echo "There are `ls | wc -l` items here." # BashはJavaやC++のように、case文による分岐ができます -case "$VARIABLE" in +case "$VARIABLE" in #分岐条件として使いたいパターンを並べてください 0) echo "There is a zero.";; 1) echo "There is a one.";; |