hexdump: New completion.

master
Ville Skyttä 2013-03-06 18:21:14 +02:00
parent 12ae7eb214
commit 552a2f2a94
5 changed files with 55 additions and 0 deletions

View File

@ -50,6 +50,7 @@ gnumake
gpc
hciattach
hciconfig
hd
host
hping
hping3

View File

@ -120,6 +120,7 @@ bashcomp_DATA = a2x \
gzip \
hcitool \
hddtemp \
hexdump \
hid2hci \
hping2 \
htop \
@ -430,6 +431,7 @@ CLEANFILES = \
gpc \
hciattach \
hciconfig \
hd \
host \
hping \
hping3 \
@ -663,6 +665,10 @@ symlinks: $(targetdir) $(DATA)
rm -f $(targetdir)/$$file && \
$(LN_S) hcitool $(targetdir)/$$file ; \
done
for file in hd ; do \
rm -f $(targetdir)/$$file && \
$(LN_S) hexdump $(targetdir)/$$file ; \
done
for file in hping hping3 ; do \
rm -f $(targetdir)/$$file && \
$(LN_S) hping2 $(targetdir)/$$file ; \

29
completions/hexdump Normal file
View File

@ -0,0 +1,29 @@
# hexdump(1) completion -*- shell-script -*-
_hexdump()
{
local cur prev words cword
_init_completion || return
case $prev in
-V|-e|-n|-s)
return
;;
-f)
_filedir
return
;;
esac
if [[ $cur == -* ]]; then
local opts="$( _parse_help "$1" )"
[[ $opts ]] || opts="$( _parse_usage "$1" )"
COMPREPLY=( $( compgen -W "$opts" -- "$cur" ) )
return
fi
_filedir
} &&
complete -F _hexdump hexdump
# ex: ts=4 sw=4 et filetype=sh

View File

@ -0,0 +1 @@
assert_source_completions hexdump

View File

@ -0,0 +1,18 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "hexdump -"
sync_after_int
teardown