2019-01-27 22:03:10 +00:00
|
|
|
# case
|
|
|
|
|
|
|
|
> Esegui branch diversi in base al valore di un'espressione.
|
2023-11-06 17:44:12 +00:00
|
|
|
> Maggiori informazioni: <https://www.gnu.org/software/bash/manual/bash.html#index-case>.
|
2019-01-27 22:03:10 +00:00
|
|
|
|
|
|
|
- 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`
|