2005-09-20 13:31:55 +00:00
|
|
|
#
|
|
|
|
# Load common ssh options
|
|
|
|
#
|
|
|
|
|
2006-02-15 02:22:28 +00:00
|
|
|
__fish_complete_ssh scp
|
2005-09-20 13:31:55 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# scp specific completions
|
|
|
|
#
|
|
|
|
|
|
|
|
complete -c scp -d Hostname -a "
|
|
|
|
|
2013-09-19 15:19:13 +00:00
|
|
|
(__fish_print_hostnames):
|
2005-09-20 13:31:55 +00:00
|
|
|
|
|
|
|
(
|
|
|
|
#Prepend any username specified in the completion to the hostname
|
2013-05-21 04:45:54 +00:00
|
|
|
commandline -ct |sed -ne 's/\(.*@\).*/\1/p'
|
2013-09-19 15:19:13 +00:00
|
|
|
)(__fish_print_hostnames):
|
2005-09-20 13:31:55 +00:00
|
|
|
|
2012-12-07 03:55:23 +00:00
|
|
|
(__fish_print_users)@\tUsername
|
2005-09-20 13:31:55 +00:00
|
|
|
|
|
|
|
"
|
2012-07-12 00:20:58 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Remote path
|
|
|
|
#
|
2013-05-21 04:45:54 +00:00
|
|
|
complete -c scp -d "Remote Path" -n "commandline -ct|sgrep -o '.*:'" -a "
|
2012-07-12 00:20:58 +00:00
|
|
|
|
|
|
|
(
|
|
|
|
#Prepend any user@host information supplied before the remote completion
|
2013-05-21 04:45:54 +00:00
|
|
|
commandline -ct|sgrep -o '.*:'
|
2012-07-12 00:20:58 +00:00
|
|
|
)(
|
|
|
|
#Get the list of remote files from the specified ssh server
|
2013-05-21 04:45:54 +00:00
|
|
|
ssh -o \"BatchMode yes\" (commandline -ct|sed -ne 's/\(.*\):.*/\1/p') ls\ -dp\ (commandline -ct|sed -ne 's/.*://p')\* 2> /dev/null
|
2012-07-12 00:20:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
"
|
|
|
|
|
2007-01-16 01:18:28 +00:00
|
|
|
complete -c scp -s B --description "Batch mode"
|
|
|
|
complete -c scp -s l -x --description "Bandwidth limit"
|
|
|
|
complete -c scp -s P -x --description "Port"
|
|
|
|
complete -c scp -s p --description "Preserves modification times, access times, and modes from the original file"
|
|
|
|
complete -c scp -s q --description "Do not display progress bar"
|
|
|
|
complete -c scp -s r --description "Recursively copy"
|
2013-04-01 17:49:02 +00:00
|
|
|
complete -c scp -s S --description "Encryption program"
|
2005-09-20 13:31:55 +00:00
|
|
|
|