CommandLine
structureThe CommandLine structure provides access to the name and arguments used to invoke the currently running program. Additional information on the functions defined in this structure, particularly as stand-alone programs and program termination, can be found in Section 11.1.
signature COMMAND_LINE
structure CommandLine
: COMMAND_LINE
val name : unit -> string
val arguments : unit -> string
name ()
arguments ()
Implementation note:
The arguments returned may be only a subset of the arguments actually supplied by the user, since an implementation's run-time system may consume some of them.
The precise semantics of the above operations are OS- and implementation-specific. For example, name
might return the full pathname or just the base name. See also the implementation note under arguments
.
Last Modified September 1, 1997
Comments to John Reppy.
Copyright © 1997 Bell Labs, Lucent Technologies