Hi all,
I didn't find in the clap documentation of way of managing both cli flags and shell file expansion.
I mean I want to be able to pass flag (e.g: -x) and/or only use a file glob pattern (e.g: *.jpg). Filename expansion occurs (on UNIX) before calling the executable, and the clap crate allows you to use mutliple values but with an option (only?).
I can use the std::env and collect the arguments but doing this I lose the clap facilities.
To be more precise:
$ myapp -x *.jpg
$ myapp *.jpg
Any hint welcome