标题: [代码合集] 包含了百度、搜狗等批处理搜索大集合 [打印本页]
作者: my1990118 时间: 2009-5-2 15:16 标题: 包含了百度、搜狗等批处理搜索大集合
我是新手,有些地方搞不来,请高手指点一下
复制代码
作者: defanive 时间: 2009-5-2 17:35
嗯,代码有点繁琐,我也去写个简单的。。。
作者: defanive 时间: 2009-5-2 17:51
感觉还是比较麻烦。。。
- @echo off
- title Search Tools —— By Defanive
- set "s1=http://www.baidu.com/s?wd="
- set "s2=http://www.google.cn/search?q="
- set "s3=http://www.gougou.com/search?search="
- set "s4=http://www.soso.com/q?w="
- set "s5=http://www.sogou.com/web?query="
- set "s6=http://www.youdao.com/search?q="
- set "s7=http://one.cn.yahoo.com/s?p="
- set "s8=http://www.bbmao.com/s?q="
- set "s9=http://cnweb.search.live.com/results.aspx?q="
- setlocal enabledelayedexpansion
- :menu
- cls
- call :pmenu
- set /p num=请输入:
- if not "!num:~1,1!"=="" goto menu
- echo !num!|findstr [1-9]>nul||goto menu
- :search
- cls
- call :pmenu
- set /p str=!num!号搜索:
- if "!str!"=="" goto menu
- start "" "!s1!!str!"
- goto search
- :pmenu
- echo.
- echo.
- echo 1.百度 4.搜搜 7.雅虎
- echo.
- echo 2.谷歌 5.搜狗 8.比比猫
- echo.
- echo 3.狗狗 6.有道 9.微软LIVE
- echo.
- echo.
复制代码
作者: Batcher 时间: 2009-5-2 19:08
集成26个搜索引擎的命令行工具
http://bbs.bathome.net/thread-3364-1-1.html
哪些地方搞不来?
作者: everest79 时间: 2009-5-2 20:06
有个关于模拟控制台的- @echo off&echo.&echo.&setlocal enabledelayedexpansion
- Set app="%~dpnx0"&set "con=2>nul"
- :top
- set /p input="%cd%>"
- if not defined input goto :top
- call :_%input:/?=% %con%||%input% %cons%
- set input=
- goto :top
-
-
- :_? 显示帮助
- help&echo.---------------ADD---------------
- for /f "tokens=1* delims=_" %%a in ('findstr /b ":_" %app%') do echo.%%b
- echo.&set errorlevel=0
- goto :eof
-
- :_oerr 内部错误信息开关
- if defined con (set con=) else set "con=2>nul"
- goto :eof
-
- :_terr 外部错误信息开关
- if definde cons (set cons=) else set "cons=2>nul"
- goto :eof
-
- :_err 所有错误信息开关
- if /i "%1" == on set con=&set cons=
- if /i "%1" == off set "con=2>nul"&set "cons=2>nul"
- goto :eof
-
- :_MPP Test............
-
- goto :eof
-
- :_MENU 菜单
- Set str=1.百度 4.搜搜 7.雅虎~2.谷歌 5.搜狗 8.比比猫~3.狗狗 6.有道 9.微软LIVE
- for /f "tokens=1-3 delims=~" %%i in ("%str%") do echo %%i&echo %%j&echo %%k
复制代码
作者: my1990118 时间: 2009-5-2 23:25 标题: 回复 3楼 的帖子
我试了,怎么打开几号搜索都是百度的搜索!解决一下!顺便帮我看一下,怎么将汉字转换成谷歌搜索转换的编码!谢谢了!
作者: my1990118 时间: 2009-5-2 23:30 标题: 回复 4楼 的帖子
就是谷歌和搜搜,在搜索时会把字符转换为一种编码,我不知道那怎么转换,帮跟忙啊!例如:我在谷歌搜索“爱你”,它搜索后的网址会是http://www.google.cn/search?hl=z ... a=&aq=f&oq=
它把“爱你”转换成了“%E7%88%B1%E4%BD%A0”
帮忙解决一下,感激不尽
作者: Batcher 时间: 2009-5-3 18:36 标题: 回复 7楼 的帖子
google搜索“URLENCODE”
先了解一下它是怎么编码的吧
^_^
作者: everest79 时间: 2009-5-4 00:36
IE设置里选上以UTF8发送URL然后你直接汉字就行了
作者: cmbatd 时间: 2009-5-5 08:38
跟这个功能有差不多,谁能修改一下呢
http://hi.baidu.com/%BD%BA%CB%AE ... 5435a7a50f527d.html
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |