Description

Type integer READONLY

pmshell_builtin is a constant value that identifies a shell builtin command. Use it to compare with the value of the pmshell_cmdtype variable.

Example
if (defined pmshell_cmd){ 
   if ((user in safe_shell_list) && (pmshell_cmdtype == pmshell_builtin)) 
   { 
      #allow all built-ins for selected users accept; 
   } 
}