使用FART删除整行(并将其替换为新行)

时间:2015-07-31 18:00:05

标签: batch-file replace dos

我需要删除以下行:

user_pref("network.proxy.http", "177.22.10.226");

位于文件中:

%APPDATA%\Mozilla\Firefox\Profiles\zizwksvf.default\prefs.js

并将其替换为以下行:

user_pref("network.proxy.http", "177.22.10.116");

即。基本上我必须使用批处理文件中的命令行替换代理的地址。 由于我事先不知道哪条线是我必须替换的(可以是任何IP)我想用*替换所有具有字符串的行" network.proxy.http"包括这样的引号:

fart %APPDATA%\Mozilla\Firefox\Profiles\zizwksvf.default\prefs.js """*network.proxy.http*""" "user_pref("network.proxy.http", "177.22.10.116");"

但它不起作用,没有找到元素,而如果我尝试使用以下方法预先知道有多少元素可以使用:

fart -p %APPDATA%\Mozilla\Firefox\Profiles\zizwksvf.default\prefs.js """network.proxy.http"""

它说它找到了一个元素。有什么建议吗?

干杯 甲

2 个答案:

答案 0 :(得分:4)

建议您不要使用sourceforge上托管的任何内容。 你可以在没有任何预编译的二进制文件的情况下完成。 您可以尝试replacer.bat(文件名之前的e?用于评估unicode序列 - 在这种情况下为引号)

call replacer.bat "e?%APPDATA%\Mozilla\Firefox\Profiles\zizwksvf.default\prefs.js" "user_pref(\u0022network.proxy.http\u0022, \u0022177.22.10.116\u0022);" "user_pref(\u0022network.proxy.http\u0022, \u0022177.22.10.116\u0022);"

您还可以查看FindReplJRepl这些更复杂的工具

编辑。根据帮助page,您可以使用-C选项,并在参数中使用\x22而不是双引号。

答案 1 :(得分:1)

There are several different ways to do that with Batch files, from the advanced tools that npocmaka suggested to simpler one-purpose Batch files; like this one:

@echo off
setlocal EnableDelayedExpansion

set "find=network.proxy.http"
set "repl=user_pref("network.proxy.http", "177.22.10.116");"

rem Get the line number of the search line
for /F "delims=:" %%a in ('findstr /N /C:"%find%" input.txt') do set /A "numLines=%%a-1"

rem Open a code block to read-input-file/create-output-file

< input.txt (

   rem Copy numLines-1 lines
   set /P line=
   for /L %%i in (1,1,%numLines%) do (
      echo(!line!
      set "line="
      set /P "line="
   )

   rem Replace the search line
   echo %repl%

   rem Copy the rest of lines
   findstr "^"

) > output.txt

rem Replace input file with created output file
move /Y output.txt input.txt > NUL

This Batch file is a modification of the one posted at this answer.