File: bash-completion-remove.sh

package info (click to toggle)
ruby-toys 0.19.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,044 kB
  • sloc: ruby: 3,857; sh: 12; makefile: 4
file content (6 lines) | stat: -rw-r--r-- 89 bytes parent folder | download
1
2
3
4
5
6
if [[ $# -eq 0 ]]; then
  set -- "toys"
fi
for arg in "$@"; do
  complete -r "$arg"
done