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

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