3

我注意到如果我使用 argparse 参数,bash 选项卡完成返回的文件更少。我怎样才能改变/控制它?

最小的示例代码

me@here:~/test$ cat argparsetest.py 
import argparse
parser.add_argument('-i', help='input', required=True)

bash 完成示例:

# shows all the files 
me@here:~/test$ python argparsetest.py 
argparsetest.py  result.png       u1.py  

# does not show the image result.png I am actually interested in
me@here:~/test$ python argparsetest.py -i
argparsetest.py  u1.py            

已经有两个类似的问题,但我没有发现它们有帮助。

4

1 回答 1

8

这与 argparse 甚至 Python 本身无关。您可能启用了“可编程 bash 完成”,并且完成规则被混淆了,因为您的命令行以“python”开头。

解决这个问题的最简单方法是添加到 python 文件的顶部:

#!/usr/bin/env python

,然后使 Python 脚本可执行:

me@here:~/test$ chmod u+x argparsetest.py 

然后直接调用它,而不显式调用“python”:

me@here:~/test$ ./argparsetest.py<TAB>
argparsetest.py  result.png       u1.py  

me@here:~/test$ ./argparsetest.py -i<TAB>
argparsetest.py  result.png       u1.py  

或者,您可以完全关闭 bash 完成

complete -r

而且,如果您想在以后的会话中禁用它,请注释掉或删除 ~/.bashrc 或 /etc/bashrc 上可能如下所示的行:

if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
fi
于 2012-05-01T14:51:25.600 回答