Re: shell interpreter variables

2017-09-22 Thread Mohit Jaggi
To: "users@zeppelin.apache.org" <users@zeppelin.apache.org> > Subject: shell interpreter variables > > Hi All, > I am using the shell interpreter and noticed that although I can see the > scope is global and shared in the configuration, any shell variable set in > one para is

Re: shell interpreter variables

2017-09-22 Thread Jianfeng (Jeff) Zhang
pache.org<mailto:users@zeppelin.apache.org>> Subject: shell interpreter variables Hi All, I am using the shell interpreter and noticed that although I can see the scope is global and shared in the configuration, any shell variable set in one para is not visible in another. e.g. para1 -- export x

shell interpreter variables

2017-09-22 Thread Mohit Jaggi
Hi All, I am using the shell interpreter and noticed that although I can see the scope is global and shared in the configuration, any shell variable set in one para is not visible in another. e.g. para1 -- export x=1 #also tried x =1, without export echo $x #prints 1 para2 -- echo $x #prints