argfile icon indicating copy to clipboard operation
argfile copied to clipboard

Load additional CLI args from file

Results 4 argfile issues
Sort by recently updated
recently updated
newest added

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/rust-cli/argfile). This repository currently has no open or...

If I have `args/file1.txt` with: ``` @file2.txt ``` And `args/file2.txt` with: ``` --foo ``` I would expect running a command line with `@args/file1.txt` would see `--foo` as the files inside...

Hoping to use `wild` for this, see [#5](https://gitlab.com/kornelski/wild/-/issues/5)

bug
breaking-change

I did not find any documentation on how to escape the prefix character if needed. And none of my attempts were successful: - myprog @@escaped-arg - myprog '@escaped-arg' In both...