mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-29 20:20:30 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2645 e7d03fd6-7b0d-0410-9947-9c21f3af8025
13 lines
294 B
Text
13 lines
294 B
Text
# install this file into /etc/bash_completion.d/linkchecker on a
|
|
# Debian Linux System
|
|
|
|
have linkchecker &&
|
|
_linkcheck() {
|
|
if type _optcomplete >/dev/null 2>&1; then
|
|
_optcomplete "$@"
|
|
else
|
|
_filedir
|
|
fi
|
|
return 0
|
|
}
|
|
[ "$have" ] && complete -F _linkcheck linkchecker
|