os 0.1.0

Library for various os utilities
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 0 items with examples
  • Size
  • Source code size: 3.32 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 112.67 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • tjwhitaker/os
    0 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • camp4climber

os

Travis Build Status crates.io MIT licensed

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

Example

Get the kernel name and os name.

extern crate os;

fn main() {
    let os_info = os::get_info();
    println!("{:?}", os_info);
}