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