Skip to content

Commit

Permalink
[bash-jp/ja-jp] Corrected spelling. seperated -> separated
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobCWard committed Feb 18, 2016
1 parent 8dc3329 commit 97cbeab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ja-jp/bash-jp.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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?"
Expand Down Expand Up @@ -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.";;
Expand Down

0 comments on commit 97cbeab

Please sign in to comment.