bash – 当路径作为命令输入时,cd到目录(而不是“foo是目录”错误)

前端之家收集整理的这篇文章主要介绍了bash – 当路径作为命令输入时,cd到目录(而不是“foo是目录”错误)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我讨厌当bash给我“呃!”一种错误
foo$./bar
-bash: ./bar: is a directory

我曾经喜欢AmigaOS shell,其中“执行”目录只是意味着将其设置为当前目录:

foo$./bar
bar$

在bash中有可能吗? (当然没有无限数量的别名.)

Bash 4.0具有autocd选项.

Official FAQ

There is a new ‘autocd’ option that,
when enabled,causes bash to attempt
to `cd’ to a directory name that is
supplied as the first word of a simple
command.

另外,至少早在2.0之前,请查看man bash中任何版本的CDPATH环境变量.它允许您通过在列出的目录中搜索cd命令中指定的目录来缩短cd命令.

原文链接:https://www.f2er.com/bash/385509.html

猜你在找的Bash相关文章