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
sshpass is quite happy with pipes, as mentioned in README.md.
The text was updated successfully, but these errors were encountered:
The current behavior is intentional. I don't want people to think that the following usage would work as expected:
passh cmd1 ... | cmd2 ...
Simple example:
$ sshpass echo hello | hexdump -C 00000000 68 65 6c 6c 6f 0a |hello.| 00000006 $ passh echo hello | hexdump -C 00000000 68 65 6c 6c 6f 0d 0a |hello..| 00000007
You can write like this (as mentioned in README.md):
passh sh -c 'cmd1 ... | cmd2 ... | ...'
Sorry, something went wrong.
No branches or pull requests
sshpass is quite happy with pipes, as mentioned in README.md.
The text was updated successfully, but these errors were encountered: