Fix problem where bash completion script would not allow user to complete file names

This commit is contained in:
Hackerpilot 2016-01-20 02:33:16 -08:00
parent fa75eedb36
commit cc7dab0341
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,8 @@ _dfmt()
return 0
;;
*)
COMPREPLY=($(compgen -f -- ${cur}))
return 0
;;
esac
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))