A rust library for various os utilities.
Not for production use yet!
The module uses the following command line tools and assumes they are installed on your system.
- uname
Get the kernel name and os name.
extern crate os;
fn main() {
let os_info = os::get_info();
println!("{:?}", os_info);
}