不会。在命令实际运行之前进行扩展。
您只能在运行命令之前禁用glob或通过引用星号。
原文链接:https://www.f2er.com/bash/390323.html您只能在运行命令之前禁用glob或通过引用星号。
$ # quote it $ foo '*' $ # or escape it $ foo \* $ # or disable the glob (noglob) $ set -f $ foo *