-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathenv.mon
38 lines (32 loc) · 786 Bytes
/
env.mon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// Simple environmental variable display.
//
// When Monkey starts each environmental variable will be imported
// as a global variable with a `$`-prefix.
//
//
// Get a single Value
//
puts( "You are " , os.getenv( "USER" ) , "\n" );
puts( "Your home is ", os.getenv("HOME"), "\n" );
// Split $PATH into fields, based upon the `:` character
puts( "Directories on your system PATH\n");
let paths = os.getenv("PATH").split(":");
// Loop over the results
let i = 0;
for( i < len(paths) ) {
// Print them
puts( "\t", i, " ", paths[i], "\n" );
i++;
}
//
// Now show all environmental variables
//
let hash = os.environment();
let keys = keys(hash);
let i = 0;
puts( "Environment dump\n");
for( i < len(keys) ) {
puts( keys[i], "=", hash[keys[i]], "\n");
i++;
}