假设我有以下目录结构:
main_dir
- subdir
- fabricators
- other directories
- subdir
- fabricators
- other directories ..
- subdir
- fabricators
- other directories ..
现在从主目录中如何才能在目录fabricator
中搜索除其他目录之外的其他目录?
答案 0 :(得分:1)
使用shell通配符:
grep searchstring main_dir/*/fabricators/*