mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-29 19:18:36 -07:00
17 lines
350 B
Bash
17 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
|