-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_awssh
More file actions
17 lines (16 loc) · 734 Bytes
/
Copy path_awssh
File metadata and controls
17 lines (16 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#compdef awssh
_awssh() {
_arguments -w \
'(- *)'{-h,--help}'[show help]' \
'(-u --username)'{-u,--username}'[ssh login username.]' \
'(-p --port)'{-p,--port}'[ssh login port.]' \
'--cache[enable cache a credentials.]' \
'--duration[cache duration.]' \
'--enable-snapshot[enable snapshot.]' \
'(-c --external-command)'{-c,--external-command}'[feature use.]' \
'(-i --identity-file)'{-i,--identity-file}'[identity file path.]' \
'--profile[use a specific profile from your credential file.]' \
'(-P --publickey)'{-P,--publickey}'[public key file path.]' \
'(-f --port-forward-only)'{-f,--port-forward-only}'[Only port-forwarding.]' \
'--select-profile[select a specific profile from your credential file.]'
}