get_env 0.1.0

Get argv and envp by hook or by crook. This library goes further than the stdlib to get arguments and environment variables, including reading from /proc/self/cmdline and similar.
Documentation
1
2
3
4
5
6
7
8
9
extern crate get_env;
extern crate serde_json;

fn main() {
	println!(
		"{}",
		serde_json::to_string(&(get_env::args_os(), get_env::vars_os())).unwrap()
	);
}