Crates.io | argrs |
lib.rs | argrs |
version | 0.1.2 |
source | src |
created_at | 2023-04-21 10:14:01.893671 |
updated_at | 2023-04-21 16:24:23.77613 |
description | A simple program to list the arguments passed on the command line. |
homepage | |
repository | https://github.com/FedericoStra/argrs |
max_upload_size | |
id | 845173 |
size | 5,405 |
A simple program to list the arguments passed on the command line.
Ported to Rust from args.
$ argrs helps you debug command line arguments
0: `argrs`
1: `helps`
2: `you`
3: `debug`
4: `command`
5: `line`
6: `arguments`
Simply call argrs
with whatever command line arguments and it'll print them.
This can be useful to verify commands generated with find
/fd
before executing them,
for example
$ fd -tf -X argrs wc -l
0: `argrs`
1: `wc`
2: `-l`
3: `./Cargo.lock`
4: `./LICENSE`
5: `./README.md`
6: `./src/main.rs`
7: `./Cargo.toml`