initial implementation for 'or' flag

This commit is contained in:
Valerie Wolfe 2024-08-12 15:06:09 -04:00
parent 72d6902136
commit eb675928a7
5 changed files with 20 additions and 16 deletions

View file

@ -10,6 +10,7 @@
.Op Fl -find Ar root .Op Fl -find Ar root
.Op Fl -pc Ar flags .Op Fl -pc Ar flags
.Ar target .Ar target
.Op Fl -or Ar alt
.Op Ar --\ args .Op Ar --\ args
.Sh DESCRIPTION .Sh DESCRIPTION
The The
@ -29,6 +30,8 @@ The resulting script will locate the target binary in the given directory using
.Xr find 1 . .Xr find 1 .
.It Fl h , Fl -help .It Fl h , Fl -help
Print a short help message. Print a short help message.
.It Fl -or Ar fallback
The resulting script will fall back to the provided argument if the target is not executable.
.It Fl -pc Ar flags .It Fl -pc Ar flags
The resulting script will pass the arguments converted with The resulting script will pass the arguments converted with
.Xr path-convert 1 . path-convert will be invoked with the provided flags forwarded (use 'x' to forward no flags). .Xr path-convert 1 . path-convert will be invoked with the provided flags forwarded (use 'x' to forward no flags).

View file

@ -1,6 +1,6 @@
[package] [package]
name = "mkwin" name = "mkwin"
version = "0.1.1" version = "0.2.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View file

@ -4,6 +4,7 @@ pub const HELP: [&str;2] = ["-h", "--help"];
pub const EMPTY: [&str;2] = ["-e", "--empty"]; pub const EMPTY: [&str;2] = ["-e", "--empty"];
pub const ENV_SHARE: [&str;2] = ["-E", "--env-share"]; pub const ENV_SHARE: [&str;2] = ["-E", "--env-share"];
pub const FIND_BIN: &str = "--find"; pub const FIND_BIN: &str = "--find";
pub const OR: &str = "--or";
pub const PATH_CONVERT: &str = "--pc"; pub const PATH_CONVERT: &str = "--pc";
pub const QUIET: [&str;2] = ["-q", "--quiet"]; pub const QUIET: [&str;2] = ["-q", "--quiet"];

View file

@ -66,8 +66,8 @@ pub fn main() {
// get target executable // get target executable
let target: String; let target: String;
if let Ok(Some(arg)) = args.subcommand() { if let Ok(Some(arg)) = args.subcommand() {
if let Some(root) = find_bin { // handle find binary flag if let Some(root) = &find_bin { // handle find binary flag
target = format!("target=`find {root} -name '{arg}'`\n\"$target\""); target = format!("`find {root} -name '{arg}'`");
} else { // handle normal path } else { // handle normal path
let path = Path::new(&arg); let path = Path::new(&arg);
if let Ok(path) = path.canonicalize() { if let Ok(path) = path.canonicalize() {
@ -76,13 +76,20 @@ pub fn main() {
} else { error::canonicalize_fail(arg); } } else { error::canonicalize_fail(arg); }
} }
} else { error::missing_target(); } } else { error::missing_target(); }
let exec =
if let Ok(alt) = args.value_from_str::<&str, String>(flag::OR) {
format!("target={target}\nif [ ! -x \"$target\" ]; then\n\ttarget='{alt}'\nfi\n\n\"$target\"")
} else if find_bin.is_some() {
format!("\"{target}\"")
} else { target };
// construct output // construct output
println!("#!/usr/bin/bash\n# generated with: mkwin{arg_string}\n"); println!("#!/usr/bin/bash\n# generated with: mkwin{arg_string}\n");
if env_share { println!("env-share 2> /dev/null\n"); } if env_share { println!("env-share 2> /dev/null\n"); }
print!("{target}"); print!("{exec}");
// handle forwarded arguments // handle forwarded arguments
if !forwarded.is_empty() { if !forwarded.is_empty() {

View file

@ -1,18 +1,11 @@
#!/usr/bin/bash #!/usr/bin/bash
# generated with: mkwin /mnt/c/Program Files/PowerShell/7/pwsh.exe -E --or /mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe
env-share 2> /dev/null env-share 2> /dev/null
# try to use system-wide version first. target='/mnt/c/Program Files/PowerShell/7/pwsh.exe'
PWSH='/mnt/c/Program Files/PowerShell/7/pwsh.exe' if [ ! -x "$target" ]; then
if [ ! -x "$PWSH" ]; then target='/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe'
unset PWSH
fi fi
# fall back to System32 "$target" $@
if [ -z ${PWSH+x} ]; then
PWSH='/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe'
fi
# run target
"$PWSH" $@