Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make shopt change local to function

Tags:

bash

shopt

I'm trying to write a bash function that uses nocasematch without changing the callers setting of the option. The function definition is:

is_hello_world() {   shopt -s nocasematch   [[ "$1" =~ "hello world" ]]  } 

Before I call it:

$ shopt nocasematch nocasematch     off 

Call it:

$ is_hello_world 'hello world' && echo Yes Yes $ is_hello_world 'Hello World' && echo Yes Yes 

As expected, but now nocasematch of the caller has changed:

$ shopt nocasematch nocasematch     on 

Is there any easy way to make the option change local to the function?

I know I can check the return value of shopt -q but that still means the function should remember this and reset it before exit.

like image 658
Thor Avatar asked Aug 29 '12 13:08

Thor


1 Answers

The function body can be any compound command, not just a group command ( {} ). Use a sub-shell:

is_hello_world() (   shopt -s nocasematch   [[ "$1" =~ "hello world" ]]  ) 
like image 62
chepner Avatar answered Sep 20 '22 01:09

chepner