Crates.io | wild |
lib.rs | wild |
version | 2.2.1 |
source | src |
created_at | 2017-11-17 15:22:20.056667 |
updated_at | 2024-01-27 15:57:09.341608 |
description | Glob (wildcard) expanded command-line arguments on Windows |
homepage | https://lib.rs/crates/wild |
repository | https://gitlab.com/kornelski/wild |
max_upload_size | |
id | 39700 |
size | 27,166 |
Wild::args
for RustAllows Rust applications support wildcard arguments (*foo*
, file.???
, *.log.[0-9]
, etc.) on command-line, uniformly on all platforms, including Windows.
Unix shells automatically interpret wildcard arguments and pass them expanded (already converted to file names) to applications, but Windows' cmd.exe
doesn't do that. For consistent cross-platform behavior, this crate emulates Unix-like expansion on Windows. You only need to use wild::args()
instead of std::env::args()
.
It is more robust than using glob()
on values from std::env::args()
, because this crate is aware of argument quoting, and special characteres in quotes ("*"
) are intentionally not expanded.
The glob syntax on Windows is limited to *
, ?
, and [a-z]
/[!a-z]
ranges, as supported by the glob crate. Parsing of quoted arguments precisely follows Windows' native syntax (CommandLineToArgvW
, specifically).
wild::args()
is a drop-in replacement for std::env::args()
.
[dependencies]
wild = "2"
fn main() {
let args = wild::args();
println!("The args are: {:?}", args.collect::<Vec<_>>());
}
let matches = clap::App::new("your_app")
.arg(…)
.arg(…)
.arg(…)
// .get_matches(); change to:
.get_matches_from(wild::args());