sshfs-mapper: Added bash completion.
git-svn-id: https://websvn.glenux.net/svn/Upoc/sshfs-mapper/trunk@1426 eaee96b3-f302-0410-b096-c6cfd47f7835
This commit is contained in:
parent
08cd14df4c
commit
35f8500373
2 changed files with 24 additions and 0 deletions
1
Makefile
1
Makefile
|
@ -16,6 +16,7 @@ install:
|
|||
mkdir -p $(MANDIR)/man1
|
||||
cp sshfs-mapper $(BINDIR)/
|
||||
cat sshfs-mapper.1 | gzip > $(MANDIR)/man1/sshfs-mapper.1.gz
|
||||
install -D -o root -g root -m 644 $(CURDIR)/sshfs-mapper.completion $(DESTDIR)/etc/bash_completion.d/sshfs-mapper
|
||||
#
|
||||
mkdir -p $(CONFDIR)
|
||||
for f in `ls conf`; do \
|
||||
|
|
23
sshfs-mapper.completion
Normal file
23
sshfs-mapper.completion
Normal file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/sh
|
||||
|
||||
_sshfsmapper_opts()
|
||||
{
|
||||
local cur prev sshfsmapper_opts
|
||||
|
||||
COMPREPLY=()
|
||||
cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
||||
|
||||
sshfsmapper_opts='-s -h -i -l -u -a'
|
||||
if [[ "$cur" == -* ]]; then
|
||||
COMPREPLY=( $( compgen -W "$sshfsmapper_opts" -- $cur ) )
|
||||
else
|
||||
if [[ "$prev" == -s ]]; then
|
||||
COMPREPLY=( $( sshfs-mapper -l 2> /dev/null ) )
|
||||
else
|
||||
COMPREPLY=( $( compgen -W "$sshfsmapper_opts" -- $cur ) )
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
complete -F _sshfsmapper_opts $default sshfs-mapper
|
Loading…
Reference in a new issue