mac删除本地仓库中所有的.lastUpdated

find /Users/liudawei/Documents/develop/repository_maven -name "*.lastUpdated" -exec grep -q "Could not transfer" {} \; -print -exec rm {} \;

windows系统

cd %userprofile%\.m2\repository
for /r %i in (*.lastUpdated) do del %i

猜你喜欢

转载自blog.csdn.net/weixin_40101530/article/details/85156714