Linux递归删除文件命令

find . -name "*.log.*" -exec ls {} \;
find . -name "*.log.*" -exec rm -rf {} \;

windows下递归删除文件

dir /s *.log
del /s *.log

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-27
猜你喜欢
  • 2022-12-23
  • 2021-09-26
  • 2022-12-23
  • 2022-01-31
  • 2022-12-23
  • 2021-10-25
相关资源
相似解决方案