zargs

A rewrite of xargs in Rust, for fun and science

Todo list

Parameters implemented from xargs:

Not sure if I can about other parameters! Maybe I can be convinced otherwise.

Installation

shell cargo install zargs

Example Usage

Replacing strings, in the target command, with piped arguments

shell echo Vasilios | target/debug/zargs -r name echo "Hello, name!" Hello, Vasilios!

Should work on Windows!

shell echo "write-output 'hello world :)'" | zargs powershell hello world :)