I am trying to filter out some strings using case statement.
case $HOST in
Linux|Windows|Storage*)
I want to filter out the hosts which have names like this
- test_prd_linux
- test_prd_windows
How can i include *prd*
in the above case
statment? Something like this?
case $HOST in
Linux|Windows|Storage|*prd*)