phoenix-smile

  Windows:

@echo off
echo 开始...
for /f "delims=" %%i in (\'dir /b /s "./*lastUpdated"\') do (
    del /s /q %%i
)
echo 结束
pause

  Linux:

echo 正在搜索...
find . -name "*lastUpdated" | xargs rm -fr
echo 搜索完毕

 

分类:

技术点:

相关文章:

  • 2021-03-31
  • 2021-08-18
  • 2021-12-07
  • 2022-01-29
  • 2022-12-23
  • 2021-10-04
  • 2022-03-11
猜你喜欢
  • 2021-09-26
  • 2021-05-18
  • 2022-12-23
相关资源
相似解决方案