转自:http://www.oschina.net/code/snippet_151849_49131
@
echo
off
rem create by sunhao(sunhao.[email protected])
rem crazy coder
rem 这里写你的仓库路径
set
REPOSITORY_PATH=F:\study\apache-maven-3.0.3\repository
rem 正在搜索...
for
/f
"delims="
%%i
in
(
‘dir /b /s "%REPOSITORY_PATH%\*lastUpdated*"‘
)
do
(
del
/s
/q
%%i
)
rem 搜索完毕
pause
# create by sunhao([email protected])
# crazy coder
# 这里写你的仓库路径
REPOSITORY_PATH=~
/Documents/tools/apache-maven-3
.0.3
/repository
echo
正在搜索...
find
$REPOSITORY_PATH -name
"*lastUpdated*"
|
xargs
rm
-fr
echo
搜索完
时间: 2024-10-10 00:12:31