@echo off
start firefox http://stackoverflow.com
如何创建可在网站中找到字符串或文本的批处理文件,然后将其复制到记事本中?
答案 0 :(得分:2)
您可以使用curl
或wget
将网页下载到本地文件中。然后,您可以使用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