Description
Type string READONLY
The name of the command being run.
The command variable generally contains the full path name of the command being run. Use the basename() function to get the command name without the full path.
Example
admincommands = {"hostname","kill","shutdown"}; if (basename(command) in admincommands) { runuser = "root"; accept; }