aboutsummaryrefslogtreecommitdiffhomepage
path: root/init/completions/scp.fish
blob: 111a73008da12035c8d4f8ac1a4a3b28a5dce214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#
# Load common ssh options
#

__fish_complete_ssh scp

#
# scp specific completions
#

complete -c scp -d Hostname -a "

(
	#Find a suitable hostname from the knownhosts files
	cat ~/.ssh/known_hosts{,2} ^/dev/null|cut -d ' ' -f 1| cut -d , -f 1
):

(
	#Prepend any username specified in the completion to the hostname
	echo (commandline -ct)|sed -ne 's/\(.*@\).*/\1/p'
)(
	cat ~/.ssh/known_hosts{,2} ^/dev/null|cut -d ' ' -f 1| cut -d , -f 1
):

(__fish_print_users)@

"
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 (_ "Encyption program")