Skip to main content
The 2024 Developer Survey results are live! See the results

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 3
    If you are using bash or zsh, process substitution is a simpler way of passing the output of one command to another. bash: ssh -F <(vagrant ssh-config) zsh: zsh process substitution ssh -F =(vagrant ssh-config)
    – myeeshen
    Commented Aug 7, 2014 at 14:34
  • @myshen: according to the answer by @tyrion process substitution doesn't work for ssh -F in bash - the way you mention should work in zsh though.
    – Joel Purra
    Commented Dec 5, 2014 at 11:52