-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xargs please! #37
Labels
Comments
Alas there's no clean, OS-independent-way of doing this in rust. See rust-lang/rust#40384 |
refi64
added a commit
to refi64/findutils
that referenced
this issue
Dec 27, 2021
This includes much of the core xargs functionality, with the following notable exceptions: - Parallel execution (`-P`): This option currently just does nothing, that way anything that passes -P can at least run without a notable behavior shift (other than simply being slower). - Replacement strings (`-I`): This can easily be worked around via an intermediate shell invocation (e.g. `xargs -L1 sh -c 'do-things-with $@' --`). - EOF strings (`-E`): I've honestly never seen this actually used, though it would not be particularly difficult to implement given the current architecture. Closes uutils#37 Signed-off-by: Ryan Gonzalez <[email protected]>
refi64
added a commit
to refi64/findutils
that referenced
this issue
Dec 27, 2021
This includes much of the core xargs functionality, with the following notable exceptions: - Parallel execution (`-P`): This option currently just does nothing, that way anything that passes -P can at least run without a notable behavior shift (other than simply being slower). - Replacement strings (`-I`): This can easily be worked around via an intermediate shell invocation (e.g. `xargs -L1 sh -c 'do-things-with $@' --`). - EOF strings (`-E`): I've honestly never seen this actually used, though it would not be particularly difficult to implement given the current architecture. Closes uutils#37 Signed-off-by: Ryan Gonzalez <[email protected]>
refi64
added a commit
to refi64/findutils
that referenced
this issue
Dec 27, 2021
This includes much of the core xargs functionality, with the following notable exceptions: - Parallel execution (`-P`): This option currently just does nothing, that way anything that passes -P can at least run without a notable behavior shift (other than simply being slower). - Replacement strings (`-I`): This can easily be worked around via an intermediate shell invocation (e.g. `xargs -L1 sh -c 'do-things-with $@' --`). - EOF strings (`-E`): I've honestly never seen this actually used, though it would not be particularly difficult to implement given the current architecture. Closes uutils#37 Signed-off-by: Ryan Gonzalez <[email protected]>
refi64
added a commit
to refi64/findutils
that referenced
this issue
Jan 10, 2022
This includes much of the core xargs functionality, with the following notable exceptions: - Parallel execution (`-P`): This option currently just does nothing, that way anything that passes -P can at least run without a notable behavior shift (other than simply being slower). - Replacement strings (`-I`): This can easily be worked around via an intermediate shell invocation (e.g. `xargs -L1 sh -c 'do-things-with $@' --`). - EOF strings (`-E`): I've honestly never seen this actually used, though it would not be particularly difficult to implement given the current architecture. Closes uutils#37 Signed-off-by: Ryan Gonzalez <[email protected]>
refi64
added a commit
to refi64/findutils
that referenced
this issue
Jan 23, 2022
This includes much of the core xargs functionality, with the following notable exceptions: - Parallel execution (`-P`): This option currently just does nothing, that way anything that passes -P can at least run without a notable behavior shift (other than simply being slower). - Replacement strings (`-I`): This can easily be worked around via an intermediate shell invocation (e.g. `xargs -L1 sh -c 'do-things-with $@' --`). - EOF strings (`-E`): I've honestly never seen this actually used, though it would not be particularly difficult to implement given the current architecture. Closes uutils#37 Signed-off-by: Ryan Gonzalez <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As mentioned in uutils/coreutils#947 , a Rust implementation of xargs would be dope for faster, more secure systems.
The text was updated successfully, but these errors were encountered: