在我的Bash脚本中,我正在阅读用户使用READ输入的一些变量:
read -p "Glassfish Path:" GF_DIR
现在我希望用户在必须输入目录时获得自动完成功能,就像你在Bash shell上一样。所以当他输入目录的第一个字母时,他可以通过点击TAB自动填充它。 这可能吗?
答案 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.