Where are KornShell (ksh) User-Defined Variables (UDV) stored on a AIX (Advanced Interactive eXecutive) machine?
Sample Commands:
@:/dir #variable=fooValue
@:/dir #echo $variable
fooValue
So is there a file on the AIX server with "fooValue" in text? Is the value stored in memory? Can the variable be sniffed out anyway?
The shell is a running process with its own little chunk of memory it gets dealt by the operating system.
As you define and set variables, the shell stores their names and values inside its own process memory.
When the shell process exits, that memory is released back to the operating system, and the variables and their values are lost.