case: add Japanese translation (#11452)

pull/23/head
t-mangoe 2023-11-21 01:36:15 +09:00 committed by GitHub
parent 0f0c9da99e
commit eead50fd91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

12
pages.ja/common/case.md Normal file
View File

@ -0,0 +1,12 @@
# case
> 複数の選択肢がある条件文を作成するための Bash 組み込み構文。
> 詳細はこちら: <https://www.gnu.org/software/bash/manual/bash.html#index-case>
- 変数を文字列リテラルとマッチさせ、実行するコマンドを決める:
`case {{$tocount}} in {{words}}) {{wc -w README}}; ;; {{lines}}) {{wc -l README}}; ;; esac`
- パターンは | で結合し、どれにも該当しないパターンには \* を使う:
`case {{$tocount}} in {{[wW]|words}}) {{wc -w README}}; ;; {{[lL]|lines}}) {{wc -l README}}; ;; *) {{echo "what?"}}; ;; esac`