son_of_grid_engine 0.2.0

Interface with son of grid engine (formerly sun grid engine) to run rust programs on clusters.
Documentation
1
2
3
4
5
6
7
extern crate son_of_grid_engine as sge;

fn main() {
    let info = sge::discover();

    println!("{:#?}", info);
}