mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-21 00:10:24 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2791 e7d03fd6-7b0d-0410-9947-9c21f3af8025
14 lines
381 B
Text
14 lines
381 B
Text
# Install this file into directory /etc/bash_completion.d/ on a
|
|
# Debian Linux system. For other system read the documentation that
|
|
# comes with the bash-completion package.
|
|
|
|
have linkchecker &&
|
|
_linkcheck() {
|
|
if type _optcomplete >/dev/null 2>&1; then
|
|
_optcomplete "$@"
|
|
else
|
|
_filedir
|
|
fi
|
|
return 0
|
|
}
|
|
[ "$have" ] && complete -F _linkcheck linkchecker
|