1.代码
@echo off
set TheStart=delete_recursive("/system/app/
set TheEnd="^);
(for /f "delims=" %%i in ('type 1.txt') do (
echo %TheStart%%%i%TheEnd%
))>2.txt
2.原文链接:
http://www.bathome.net/viewthread.php?tid=40524&page=1
3.这个是啥?
@ECHO OFF
SET "TheStart=.append(" "
SET TheEnd= "^);
FOR /f "tokens=*" %%i IN (a_list.txt) DO (
>>New_list.txt ECHO %TheStart%%%i%TheEnd%
)
PAUSE