2005-09-20 23:31:55 +10:00
|
|
|
#
|
2017-02-01 22:49:40 -08:00
|
|
|
# Load completions shared by ssh and scp.
|
2005-09-20 23:31:55 +10:00
|
|
|
#
|
2006-02-15 12:22:28 +10:00
|
|
|
__fish_complete_ssh scp
|
2005-09-20 23:31:55 +10:00
|
|
|
|
|
|
|
#
|
|
|
|
# scp specific completions
|
|
|
|
#
|
|
|
|
|
2017-01-26 13:03:36 +11:00
|
|
|
#
|
|
|
|
# Hostname
|
|
|
|
#
|
2017-02-01 22:49:40 -08:00
|
|
|
complete -c scp -d Hostname -n "commandline --cut-at-cursor --current-token | string match -v '*:*'" -a "
|
2005-09-20 23:31:55 +10:00
|
|
|
|
2013-09-19 23:19:13 +08:00
|
|
|
(__fish_print_hostnames):
|
2005-09-20 23:31:55 +10:00
|
|
|
|
|
|
|
(
|
|
|
|
#Prepend any username specified in the completion to the hostname
|
2013-05-21 12:45:54 +08:00
|
|
|
commandline -ct |sed -ne 's/\(.*@\).*/\1/p'
|
2013-09-19 23:19:13 +08:00
|
|
|
)(__fish_print_hostnames):
|
2005-09-20 23:31:55 +10:00
|
|
|
"
|
2012-07-11 17:20:58 -07:00
|
|
|
|
2017-01-26 13:03:36 +11:00
|
|
|
#
|
|
|
|
# Local path
|
|
|
|
#
|
2017-02-01 22:49:40 -08:00
|
|
|
complete -c scp -d "Local Path" -n "commandline -ct | string match ':'"
|
2017-01-26 13:03:36 +11:00
|
|
|
|
2012-07-11 17:20:58 -07:00
|
|
|
#
|
|
|
|
# Remote path
|
|
|
|
#
|
2017-02-01 22:49:40 -08:00
|
|
|
complete -c scp -d "Remote Path" -f -n "commandline --cut-at-cursor --current-token | string match -r '.+:'" -a "
|
2012-07-11 17:20:58 -07:00
|
|
|
|
|
|
|
(
|
|
|
|
#Prepend any user@host information supplied before the remote completion
|
2015-09-09 20:55:04 +02:00
|
|
|
commandline -ct| __fish_sgrep -o '.*:'
|
2012-07-11 17:20:58 -07:00
|
|
|
)(
|
|
|
|
#Get the list of remote files from the specified ssh server
|
2015-09-09 20:55:04 +02:00
|
|
|
ssh (commandline -c| __fish_sgrep -o '\-P [0-9]*'|tr P p) -o \"BatchMode yes\" (commandline -ct|sed -ne 's/\(.*\):.*/\1/p') ls\ -dp\ (commandline -ct|sed -ne 's/.*://p')\* 2> /dev/null
|
2012-07-11 17:20:58 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
"
|
2017-02-01 22:49:40 -08:00
|
|
|
complete -c scp -s B -d "Batch mode"
|
|
|
|
complete -c scp -s l -x -d "Bandwidth limit"
|
|
|
|
complete -c scp -s P -x -d "Port"
|
|
|
|
complete -c scp -s p -d "Preserves modification times, access times, and modes from the original file"
|
|
|
|
complete -c scp -s q -d "Do not display progress bar"
|
|
|
|
complete -c scp -s r -d "Recursively copy"
|
|
|
|
complete -c scp -s S -d "Encryption program"
|