mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-03-12 04:36:22 -07:00
16 lines
292 B
Bash
16 lines
292 B
Bash
# e2label(8) completion -*- shell-script -*-
|
|
|
|
_e2label()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if ((cword == 1)); then
|
|
cur=${cur:=/dev/}
|
|
_filedir
|
|
fi
|
|
} &&
|
|
complete -F _e2label e2label
|
|
|
|
# ex: filetype=sh
|