shitbox/corebox/commands/hostid/mod.rs

26 lines
700 B
Rust
Raw Normal View History

2023-01-23 10:17:17 -05:00
use super::Cmd;
use clap::Command;
#[derive(Debug, Default)]
pub struct Hostid;
impl Cmd for Hostid {
fn cli(&self) -> clap::Command {
Command::new("hostid")
.about("print the numeric identifier for the current host")
.author("Nathan Fisher")
.version(env!("CARGO_PKG_VERSION"))
}
fn run(&self, _matches: &clap::ArgMatches) -> Result<(), Box<dyn std::error::Error>> {
2023-01-24 00:51:36 -05:00
let hostid = unsafe { libc::gethostid() };
2023-01-23 10:17:17 -05:00
let hostid: String = format!("{hostid:x}").chars().skip(8).collect();
println!("{}", hostid);
Ok(())
}
fn path(&self) -> Option<shitbox::Path> {
Some(shitbox::Path::UsrBin)
2023-01-23 10:17:17 -05:00
}
}