Function ndless::env::args

source ·
pub fn args() -> Args
Expand description

Returns the arguments which this program was started with.

The first element is traditionally the path of the executable, but it can be set to arbitrary text, and may not even exist. This means this property should not be relied upon for security purposes.

On Unix systems shell usually expands unquoted arguments with glob patterns (such as * and ?).

§Panics

The returned iterator will panic during iteration if any argument to the process is not valid unicode.

§Examples

use ndless::env;

// Prints each argument on a separate line
for argument in env::args() {
    println!("{}", argument);
}