summaryrefslogtreecommitdiffstats
path: root/completions/_hexdump
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--completions/_hexdump31
1 files changed, 31 insertions, 0 deletions
diff --git a/completions/_hexdump b/completions/_hexdump
new file mode 100644
index 0000000..785f597
--- /dev/null
+++ b/completions/_hexdump
@@ -0,0 +1,31 @@
+# hexdump(1) completion -*- shell-script -*-
+
+# Use of this file is deprecated on Linux. Upstream completion is
+# available in util-linux >= 2.23, use that instead.
+
+_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")"
+ COMPREPLY=($(compgen -W '${opts:-$(_parse_usage "$1")}' -- "$cur"))
+ return
+ fi
+
+ _filedir
+} &&
+ complete -F _hexdump hexdump hd
+
+# ex: filetype=sh