You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
319 B
15 lines
319 B
# |
|
# ~/.bash_profile |
|
# |
|
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc |
|
|
|
|
|
|
|
source ~/.dotfiles/shells/profile |
|
|
|
|
|
# tab completion for ssh hosts |
|
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 |
|
|
|
|