summaryrefslogtreecommitdiffstats
path: root/bash-completion/wall
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/wall')
-rw-r--r--bash-completion/wall24
1 files changed, 24 insertions, 0 deletions
diff --git a/bash-completion/wall b/bash-completion/wall
new file mode 100644
index 000000000..d3cbbd56a
--- /dev/null
+++ b/bash-completion/wall
@@ -0,0 +1,24 @@
+_wall_module()
+{
+ local cur prev OPTS
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
+ case $prev in
+ '-t'|'--timeout')
+ COMPREPLY=( $(compgen -W "seconds" -- $cur) )
+ return 0
+ ;;
+ esac
+ case $cur in
+ -*)
+ OPTS="-n --nobanner -t --timeout -V --version -h --help"
+ COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
+ return 0
+ ;;
+ esac
+ compopt -o filenames
+ COMPREPLY=( $(compgen -f -- $cur) )
+ return 0
+}
+complete -F _wall_module wall