chickadee » chicken » process-context » command-line-arguments

command-line-argumentsparameter

Contains the list of arguments passed to this program.

This excludes the name of the program, as well as any runtime options (options starting with -:) up until the first empty runtime option (just "-:") or non-runtime option, whichever comes first.

In other words, this method returns every option after the first list of unbroken runtime options, which are all skipped. If an empty runtime option is present, that is the last of this list of unbroken runtime options and everything after it is returned by this method. If a non-runtime option is present, that also breaks up the runtime options and this method returns that and every following option.