|
case with optional breaks
Is there a way to turn off breaks in a case clause? That is, it would fall through to the next case like in C if you don't put the "break"
I need to write a script for work that collects logs and the user can specify which log to collect or collect all by default.
Edit: This is in bash preferably
|