标签: bash shell
我正在写一个路径可以的shell脚本 ~/as-NY/com或~/as-LN/com可用的任何内容。我可以在K-shell中实现这个
~/as-NY/com
~/as-LN/com
cd ~/as-(NY|LN)/com,但不确定bash。有人可以帮忙
cd ~/as-(NY|LN)/com
答案 0 :(得分:2)
在BASH中你需要启用extglob并按照这样做:
extglob
shopt -s extglob cd ~/as-@(NY|LN)/com