Files
server/usr/share/bash-completion/completions/filefrag
2026-01-07 20:52:11 +01:00

18 lines
350 B
Bash

# filefrag(8) completion -*- shell-script -*-
_filefrag()
{
local cur prev words cword
_init_completion || return
if [[ $cur == -* ]]; then
COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur"))
return
fi
_filedir
} &&
complete -F _filefrag filefrag
# ex: filetype=sh