Description
Type string READ/WRITE
iolog is the full path name of the keystroke log file in which input, output, and error output is logged.
Example
if (command in {"csh","ksh"}) 
{ 
   iolog_encrypt = true; 
   log_passwords = false; 
   iolog_errmax = 10000; 
   iolog_opmax = 10000; 
   iolog = mktemp("/var/adm/shells/pm." + user + "." + basename(runcommand) + ".XXXXXX"); 
   accept; 
} 
   else 
{ 
   iolog=mktemp("/var/adm/pm." + user + "." + basename(runcommand) + ".XXXXXX");
}