idea 的配置文件,我想批量删除 有没有像 windows everything 那样, 直接搜到这些隐藏文件的软件或方法呀?。
1 luman 2023-11-08 09:59:20 +08:00 find . -name .idea |
2 kristofer 2023-11-08 10:44:40 +08:00 "ls -a" ? |
3 seanzxx 2023-11-08 10:50:42 +08:00 搜索:find . -name '.idea' 搜索加删除:find . -name '.idea' -exec rm -rf {} \; |
![]() | 4 knightdf 2023-11-08 10:54:02 +08:00 find /path/to -type d -name '.idea' -exec rm -rf {} + |
![]() | 6 jack1998 PRO linux shell 的基本操作哇 |