我可以配置bash"自动完成"了解文件夹名称而不是以@
开头?目前,它似乎尝试列出网络位置。
答案 0 :(得分:1)
您可以通过使用反斜杠(@
)转义来自动填充以\
开头的文件,如@lurker在评论或中所提到的那样,在表达式前面加上引号('
| "
):
反斜杠\
:
cd node_modules/\@myf
- > [tab]
- > cd node_modules/\@myfolder
单引号'
:
cd 'node_modules/@myf
- > [tab]
- > cd 'node_modules/@myfolder'
双引号"
:
cd "node_modules/@myf
- > [tab]
- > cd "node_modules/@myfolder"