Problem:
I'm running shell script as subprocess in ruby script, after running script I want to have an option to check all environment variables of the shell, including array variables.
So far I have come up with:
set | awk -F= 'BEGIN {v=0;}
/^[a-zA-Z_][a-zA-Z0-9_]*=/ {v=1;}
v==1 && $2~/^['\''\$]/ {v=2;}
v==1 && $2~/^\(/ {v=3;}
v==2 && /'\''$/ && !/'\'\''$/ {v=1;}
v==3 && /\)$/ {v=1;}
v {print;}
v==1 {v=0;}
'
Which quite good shows only variables, including arrays, multiline strings and filtering out functions.
But this does not use the same format all the time, especially array variables are represented differently in BASH and ZSH.
Here is my current implementation: https://github.com/mpapis/tf/blob/master/lib/tf/environment.rb
Question:
Is there an easy way to show all the variables that will work persistently in BASH and ZSH / possibly other shells.
setorenvand let Ruby process the output instead of AWK? – Dennis Williamson Aug 15 '12 at 2:06