aaronriekenberg / rust-parallel

Fast command line app in rust/tokio to run commands in parallel. Similar interface to GNU parallel or xargs plus useful features. Listed in Awesome Rust utilities.
MIT License
146 stars 7 forks source link

Commands from stdin support delimiter captures #24

Open QiWei opened 1 month ago

QiWei commented 1 month ago

When dealing with csv files, read from standard input, it is cumbersome and inflexible to match each field with a regular. If you support simple separation by delimiter, it is easier to call. Some of the better ones in this regard are rargs and rush, and it would be nice to integrate similar functionality into them.