假设我有一个程序 hello.py,它的一个可能的有效参数是:
./hello.py autoawesomesauce
可以输入:
./hello.py auto[tab]
此时,部分完成的参数被发送到 hello,hello 会识别它,然后在 shell 上完成它:
./hello.py autoawesomesauce
我知道 git 会做类似的事情,但是可以用 Python 脚本 + Bash 来完成吗?
答案1
在 Linux 系统上,您通常可以在以下位置找到大量示例脚本:/etc/bash_completion.d
。如果您获取这些脚本,那么您将获得自动完成行为。
我已经包含了该目录中的一个示例。这是解压缩的完成脚本。
_unrar()
{
local cur
COMPREPLY=()
_get_comp_words_by_ref cur
if [[ "$cur" == -* ]] ; then
COMPREPLY=( $( compgen -W '-ad -ap -av- -c- -cfg- -cl -cu \
-dh -ep -f -idp -ierr -inul -kb -o+ -o- -ow -p -p- -r -ta \
-tb -tn -to -u -v -ver -vp -x -x@ -y' -- "$cur" ) )
else
if [ $COMP_CWORD -eq 1 ]; then
COMPREPLY=( $( compgen -W 'e l lb lt p t v vb vt x' -- "$cur" ) )
else
_filedir '@(rar|RAR)'
fi
fi
} &&
complete -F _unrar -o filenames unrar
答案2
此功能与 Python 无关。这是底层 shell 的纯粹功能。因此,请阅读有关自动完成的 bash 文档。
谷歌搜索“bash auto-completion”,你会在前 10 个点击中找到至少 5 个合理的文档。
答案3
看这相关的 StackOverflow 帖子。
complete 'your_command' 'p/*/`echo list_of_your_options`/'