We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for the great library! Is there a way to do the equivalent of "(cd srcdir && tar cf - . ) | (cd dstdir && tar xf - )" ?
I'd like to do this following this pattern:
var file = try open(forWriting: "output.txt") runAsync("cmd1", "arg1").stdout.runAsync("cmd2").stdout.write(to: &file)
Rather than simply doing bash execution to prevent unintended string manipulation. Do you have a recommendation on how to approach this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for the great library! Is there a way to do the equivalent of "(cd srcdir && tar cf - . ) | (cd dstdir && tar xf - )" ?
I'd like to do this following this pattern:
Rather than simply doing bash execution to prevent unintended string manipulation. Do you have a recommendation on how to approach this?
The text was updated successfully, but these errors were encountered: