在Bash脚本中调用READ时获取自动完成功能

时间:2011-01-27 17:38:17

标签: bash bash-completion

在我的Bash脚本中,我正在阅读用户使用READ输入的一些变量:

read -p "Glassfish Path:" GF_DIR

现在我希望用户在必须输入目录时获得自动完成功能,就像你在Bash shell上一样。所以当他输入目录的第一个字母时,他可以通过点击TAB自动填充它。 这可能吗?

1 个答案:

答案 0 :(得分:51)

尝试:

read -e -p "Glassfish Path:" GF_DIR

-e enables readline

 -e 
    If the standard input is coming from a terminal, Readline is used
    to obtain the line.