Where are Ksh User-Defined Variables stored on UNIX machine? -


where kornshell (ksh) user-defined variables (udv) stored on aix (advanced interactive executive) machine?

sample commands:

@:/dir #variable=foovalue @:/dir #echo $variable foovalue 

so there file on aix server "foovalue" in text? value stored in memory? can variable sniffed out anyway?

the shell running process own little chunk of memory gets dealt operating system.

as define , set variables, shell stores names , values inside own process memory.

when shell process exits, memory released operating system, , variables , values lost.


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -