command_line_user_args


command_line_user_args()
      

Similar to command_line() but filters out all arguments processed by the Slogan process.

Examples:


// echo.sn
showln(command_line())
showln(command_line_user_args())
      

Ask the Slogan interpreter to evaluate the script, also pass some additional arguments to the slogan command:


$ slogan -e echo.sn hello world
//> [slogan, -e, echo.sn, hello, world]
//> [slogan, hello, world]
        

Core Module Index | Contents