如何使用mozilla firefox编写可以在网页中复制文本的批处理文件?

时间:2014-03-04 14:48:10

标签: batch-file

@echo off
start firefox http://stackoverflow.com

如何创建可在网站中找到字符串或文本的批处理文件,然后将其复制到记事本中?

1 个答案:

答案 0 :(得分:2)

您可以使用curlwget将网页下载到本地文件中。然后,您可以使用FINDSTR或类似的方法在文件中找到该字符串。然后,您可以使用Notepad启动START。您可以使用Notepad将任何字符串发送到SendKeys

或者您可以使用FINDSTR将字符串解压缩到新文件中,然后将文件名作为参数传递,以Notepad打开该文件。

示例

REM Get main page from hp.com into local file called "hp.txt"
curl www.hp.com > hp.txt

REM Look for all occurences of word "laptop" without worrying about upper/lower case and save in new file called "usefulstuff.txt"
FINDSTR /i Laptop hp.txt    > usefulstuff.txt

REM Start Notepad with the usefulstuff from HP webpage
notepad usefulstuff.txt