about summary refs log tree commit diff
path: root/Completion/User/_rlogin
blob: b792ba0d18c24ee0fc0e4a227c3bd631784a301c (plain) (blame)
1
2
3
4
5
6
7
8
9
#compdef rlogin rsh ssh

if [[ CURRENT -eq 2 ]]; then
  compgen -k hosts
elif [[ CURRENT -eq 3 ]]; then
  compadd - -l
else
  compgen -u
fi