summaryrefslogtreecommitdiffstats
path: root/system/unar/Extra/lsar.bash_completion
diff options
context:
space:
mode:
Diffstat (limited to 'system/unar/Extra/lsar.bash_completion')
-rw-r--r--system/unar/Extra/lsar.bash_completion16
1 files changed, 0 insertions, 16 deletions
diff --git a/system/unar/Extra/lsar.bash_completion b/system/unar/Extra/lsar.bash_completion
deleted file mode 100644
index 14b5dee6d3..0000000000
--- a/system/unar/Extra/lsar.bash_completion
+++ /dev/null
@@ -1,16 +0,0 @@
-__lsar()
-{
- local cur prev opts
- COMPREPLY=()
- cur="${COMP_WORDS[COMP_CWORD]}"
- opts="--long --verylong --test --password ---encoding --password-encoding \
- --print-encoding --indexes --json --json-ascii --no-recursion --help \
- --version"
- if [[ ${cur} == -* ]] ; then
- COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
- return 0
- fi
-}
-
-complete -o bashdefault -A file -F __lsar lsar
-