Skip to content

Instantly share code, notes, and snippets.

@fieldform
Created August 22, 2013 13:42
Show Gist options
  • Save fieldform/6307306 to your computer and use it in GitHub Desktop.
Save fieldform/6307306 to your computer and use it in GitHub Desktop.
OSX Tab Completion for SSH Config
# SSH Config Autocomplete
complete -o default -o nospace -W "$(/usr/bin/env ruby -ne 'puts $_.split(/[,\s]+/)[1..-1].reject{|host| host.match(/\*|\?/)} if $_.match(/\s*Host\s+/);' < $HOME/.ssh/config)" scp sftp ssh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment