递归通配符到指定目录

递归通配符到指定目录

通常,我使用繁琐的方式跳转到目录

 $ cd ~/*/*/*/2.Mathematics

*/*/*笨拙,

如何通过递归遍历来解决它

$ cd ~/**/2.Mathematics
-bash: cd: /home/me/**/2.Mathematics: No such file or directory

答案1

启用 globstar

shopt -s globstar
cd ~/**/2.Mathematics

相关内容