pub fn getenv(find: &'static str) -> Option<String>
this will check the environ array and search for an specific keyword
if let Some(user) = getenv("USER") { log::debug!("your user: {:?}", user); };