Skip to content

Instantly share code, notes, and snippets.

@plietar
Created October 28, 2013 13:18
Show Gist options
  • Save plietar/7196640 to your computer and use it in GitHub Desktop.
Save plietar/7196640 to your computer and use it in GitHub Desktop.
Pass the -t option to ssh if stdin is a terminal
#!/usr/bin/env bash
if [[ -t 0 ]]; then
ssh -t $@
else
ssh -T $@
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment