My home world is to write a shell. and I must use $PS2.
but when I write a code like this:
char *ENV_ps2;
ENV_ps2 = getenv("PS2");
I just found ENV_ps2 was point to (null).
how could I get the $PS2 in my program ?
|
My home world is to write a shell. and I must use but when I write a code like this:
I just found how could I get the |
|||
|
The
|
|||||||||
|
|
In bash, They can't be accessed via If you're writing your own shell, it probably makes sense to do something similar. You might take a look at the bash source code. It's large and complex, but searching for (You can type |
|||
|
|
|
Those env vars are not exported. If you want a non-portable approach, you could just define and export an arbitrary environment variable, and set PS1/PS2 to that value in your .bashrc/.bash_profile. eg:
|
|||
|
|
PS2environment variable actually defined? – Didier Trosset May 8 '12 at 15:40echo $PS2, it print>– thlgood May 8 '12 at 15:41exportwith no arguments or (not builtin)envwith no arguments. Usingexporttells you what the shell thinks it exports; usingenvtells you what was actually in the environment ofenv(what the shell actually exported). The two usually agree. – Jonathan Leffler May 8 '12 at 17:27