pay-respects/src/args.rs
2024-11-16 18:13:40 +01:00

75 lines
1.5 KiB
Rust

use crate::shell::initialization;
pub fn handle_args() {
let args = std::env::args().collect::<Vec<String>>();
if args.len() <= 1 {
return;
}
let mut auto_aliasing = String::new();
let mut shell = String::new();
let mut index = 1;
while index < args.len() {
match args[index].as_str() {
"-h" | "--help" => {
print_help();
}
"-v" | "--version" => {
print_version();
}
"-a" | "--alias" => {
if args.len() > index + 1 {
if args[index + 1].starts_with('-') {
auto_aliasing = String::from("f");
} else {
auto_aliasing = args[index + 1].clone();
index += 1;
}
} else {
auto_aliasing = String::from("f");
}
index += 1;
}
_ => {
shell = args[index].clone();
index += 1
}
}
}
if shell.is_empty() {
eprintln!("{}", t!("no-shell"));
std::process::exit(1);
}
let binary_path = &args[0];
initialization(&shell, binary_path, &auto_aliasing);
}
fn print_help() {
println!(
"{}",
t!(
"help",
manual = "pay-respects bash",
manual_example = "alias f=$(pay-respects bash)",
auto = "pay-respects bash --alias f",
auto_example = "eval $(pay-respects bash --alias f)",
auto_example_fish = "pay-respects fish --alias | source",
)
);
std::process::exit(0);
}
fn print_version() {
println!(
"version: {}",
option_env!("CARGO_PKG_VERSION").unwrap_or("unknown")
);
println!("compile features:");
#[cfg(feature = "runtime-rules")]
{
println!(" - runtime-rules");
}
std::process::exit(0);
}