我需要zsh
等同于和bash
。我该怎么做?shopt -s globstar
shopt -s dotglob
更新01:
按照@muru 的回答,我在 shellsetopt globdots
中使用zsh
并运行以下命令:
for i in INSTALL_USER_FILES/** ; do echo "=> '$i'" ; done
但,结果却只是:
=> 'INSTALL_USER_FILES/.local'
目录中没有任何内容.local/
以递归方式列出?