mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-30 04:17:58 +01:00
case: add Italian translation.
This commit is contained in:
parent
c3ea7d15ab
commit
2b628e3751
1 changed files with 11 additions and 0 deletions
11
pages.it/common/case.md
Normal file
11
pages.it/common/case.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# case
|
||||
|
||||
> Esegui branch diversi in base al valore di un'espressione.
|
||||
|
||||
- Esegui il match di una variabile su diverse stringhe per decidere che comando eseguire:
|
||||
|
||||
`case {{$metrica}} in {{parole}}) {{wc -w README}}; ;; {{linee}}) {{wc -l README}}; ;; esac`
|
||||
|
||||
- Combina pattern con |, utilizzando * come pattern di fallback:
|
||||
|
||||
`case {{$metrica}} in {{[pP]|parole}}) {{wc -w README}}; ;; {{[lL]|linee}}) {{wc -l README}}; ;; *) {{echo "cosa?"}}; ;; esac`
|
Loading…
Reference in a new issue