summaryrefslogtreecommitdiffstats
path: root/completions/filefrag
diff options
context:
space:
mode:
Diffstat (limited to 'completions/filefrag')
-rw-r--r--completions/filefrag17
1 files changed, 17 insertions, 0 deletions
diff --git a/completions/filefrag b/completions/filefrag
new file mode 100644
index 0000000..d26e8c8
--- /dev/null
+++ b/completions/filefrag
@@ -0,0 +1,17 @@
+# filefrag(8) completion -*- shell-script -*-
+
+_filefrag()
+{
+ local cur prev words cword
+ _init_completion || return
+
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur"))
+ return
+ fi
+
+ _filedir
+} &&
+ complete -F _filefrag filefrag
+
+# ex: filetype=sh