shitbox/corebox/commands/logname/mod.rs

28 lines
676 B
Rust
Raw Normal View History

2023-01-21 19:34:02 -05:00
use std::ffi::CStr;
use super::Cmd;
use clap::Command;
#[derive(Debug, Default)]
pub struct Logname;
impl Cmd for Logname {
fn cli(&self) -> clap::Command {
Command::new("logname")
.about("print user's login name")
.author("Nathan Fisher")
.version(env!("CARGO_PKG_VERSION"))
}
fn run(&self, _matches: &clap::ArgMatches) -> Result<(), Box<dyn std::error::Error>> {
2023-01-21 19:34:02 -05:00
let logname = unsafe { CStr::from_ptr(libc::getlogin()) };
let logname = logname.to_str()?;
println!("{logname}");
Ok(())
}
fn path(&self) -> Option<shitbox::Path> {
Some(shitbox::Path::UsrBin)
2023-01-21 19:34:02 -05:00
}
}