mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 01:38:04 +00:00
38 lines
849 B
Rust
38 lines
849 B
Rust
#![feature(core, env, io, os, path)]
|
|
use std::env;
|
|
use std::old_io::{File, Truncate, ReadWrite};
|
|
use std::os;
|
|
use std::old_path::Path;
|
|
|
|
static TEMPLATE: &'static str = "\
|
|
#![feature(env, os)]
|
|
extern crate \"@UTIL_CRATE@\" as uu@UTIL_CRATE@;
|
|
|
|
use std::env;
|
|
use std::os;
|
|
use uu@UTIL_CRATE@::uumain;
|
|
|
|
fn main() {
|
|
env::set_exit_status(uumain(os::args()));
|
|
}
|
|
";
|
|
|
|
fn main() {
|
|
let args = os::args();
|
|
if args.len() != 3 {
|
|
println!("usage: mkbuild <crate> <outfile>");
|
|
env::set_exit_status(1);
|
|
return;
|
|
}
|
|
|
|
let crat = args[1].as_slice();
|
|
let outfile = args[2].as_slice();
|
|
|
|
let main = TEMPLATE.replace("@UTIL_CRATE@", crat);
|
|
let mut out = File::open_mode(&Path::new(outfile), Truncate, ReadWrite);
|
|
|
|
match out.write_all(main.as_bytes()) {
|
|
Err(e) => panic!("{}", e),
|
|
_ => (),
|
|
}
|
|
}
|