Nathan Fisher
06b88d2c24
- Split into workspace crates - Split into two binaries `corebox` and `hashbox` - Add `mount` crate to workspace to prepare for third binary `utilbox`
49 lines
1.4 KiB
Rust
49 lines
1.4 KiB
Rust
use super::Cmd;
|
|
use clap::{Arg, ArgAction, Command};
|
|
use std::path::Path;
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct Dirname;
|
|
|
|
impl Cmd for Dirname {
|
|
fn cli(&self) -> clap::Command {
|
|
Command::new("dirname")
|
|
.about("strip last component from file name")
|
|
.args([
|
|
Arg::new("zero")
|
|
.short('z')
|
|
.long("zero")
|
|
.help("end each output line with NUL, not newline")
|
|
.action(ArgAction::SetTrue),
|
|
Arg::new("name").num_args(1..).required(true),
|
|
])
|
|
}
|
|
|
|
fn run(&self, matches: &clap::ArgMatches) -> Result<(), Box<dyn std::error::Error>> {
|
|
if let Some(names) = matches.get_many::<String>("name") {
|
|
names.for_each(|name| {
|
|
let path = match Path::new(name).parent() {
|
|
Some(p) => p,
|
|
None => Path::new("."),
|
|
};
|
|
let path = path.to_string_lossy();
|
|
let path = if path.is_empty() {
|
|
String::from(".")
|
|
} else {
|
|
path.to_string()
|
|
};
|
|
if matches.get_flag("zero") {
|
|
print!("{path}\0");
|
|
} else {
|
|
println!("{path}");
|
|
}
|
|
});
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn path(&self) -> Option<shitbox::Path> {
|
|
Some(shitbox::Path::UsrBin)
|
|
}
|
|
}
|