我正在尝试使用编程语言来搜索google 或其他指定的搜索引擎。我想使用 windows cmd 提示符来执行此操作,因为指定的编程语言有一个简单的命令来访问 cmd 提示符。
关于如何从 cmd 提示符搜索 google 的任何想法?
只需在命令行或运行命令中键入它,它就会打开您的默认浏览器让 Google 搜索SEARCHTERM
:
start www.google.com/search?q=SEARCHTERM
请注意,您必须用加号替换空格,例如
start www.google.com/search?q=Use+cmd+prompt+to+search+a+word+on+google+or+other+search+engine
或者,您也可以将此命令放在批处理文件中:
@start www.google.com/search?q=%1+%2+%3+%4+%5+%6+%7+%8+%9
简单的。
@echo off
color a
setlocal ENABLEDELAYEDEXPANSION
echo Google Batch
echo Made By GenoSans
start https://discord.gg/WwRtbBe
timeout -t 5 /nobreak
:a
cls
echo ,,
echo .g8'''bgd `7MM
echo .dP' `M MM
echo dM' ` ,pW'Wq. ,pW'Wq. .P'Ybmmm MM .gP'Ya
echo MM 6W' `Wb 6W' `Wb :MI I8 MM ,M' Yb
echo MM. `7MMF'8M M8 8M M8 WmmmP' MM 8M''''''
echo `Mb. MM YA. ,A9 YA. ,A9 8M MM YM. ,
echo `'bmmmdPY `Ybmd9' `Ybmd9' YMMMMMb .JMML.`Mbmmd'
echo 6' dP
echo Ybmmmd'
echo.
set /p s=Search:
set word=+
set str=%s%
set str=%str: =!word!%
start http://www.google.com/search?q=%str%
goto a
我创建了一个批处理文件“g.bat”并将其添加到我的 PATH 中。它看起来像这样:
start www.google.co.uk/search?q=%1+%2+%3+%4+%5
最多支持 5 个单词(当然你可以添加更多)。现在我可以从 CMD 搜索或输入“g query”开始
编辑:感谢 mrt 的灵感
您可以在 ps1 文件中写入:
function googleSearch{start www.google.com/search?q=$args}
set-alias g googleSearch
然后重新启动你的powershell,
g whatwhatwhat
doskey
在包含这些行的 .bat 或 .cmd 文件中创建别名:
@echo off
title "Foo Bar"
doskey goo=echo off $T echo Googling: $* $T start "" "www.google.com/search?q=$*" $T echo on
我们添加""
在默认浏览器中启动研究。
但是,如果您想转到另一个搜索引擎,只需将其更改为browser
. 例如,iexplorer
对于 Internet Explorer 或者firefox
如果您更喜欢 Mozilla Firefox。
使用它的示例:
goo stack overflow // it works !
弱点:如果您搜索包含&
特殊字符的句子,将停止您的研究直到该字符。
例子 :
goo stack& overflow // it does not work !
享受 !=)
注意:对于拥有 Cygwin 或 MSYS2 的 Linux 用户,您可以在 .bashrc 文件中添加此函数以执行相同的例程:
goo ()
{
echo "Googling: $@";
start "" "www.google.com/search?q=$*" $@
}
此致 !
我想你可以从命令行使用wget 。
wget -U "Firefox/3.0.15" http://www.google.com/search?q=SEARCH+TERMS+HERE -O result.html -q
或-O- -q
输出到标准输出。但是,从 html 中抓取结果将完全是另一回事。
如果您确实获得了 wget,那么还不如获得grep,或者只是获得所有GnuWin32,因为它非常有用。然后你可以做这样的事情:
wget -U "Firefox/3.0.15" "http://www.google.com/search?q=wget+google+search" -O- -q 2>&1 | grep -E -o -e "<cite>[^<]+</cite>" | sed -r -e "s/<[^>]+>//g"
... 从 Google 搜索中获取第一个链接的 URL。天空是极限。发挥创意。
(上面示例命令的输出isaksen.biz/blog/?p=470
:)
如果你想显示第一个标题和第一个 URL,它会变得有点复杂。
@echo off
setlocal enabledelayedexpansion
set search=%1 %2 %3 %4 %5 %6 %7 %8 %9
for /l %%a in (1,1,8) do if "!search:~-1!"==" " set search=!search:~0,-1!
set search=%search: =+%
wget -U "Firefox/3.0.15" "http://www.google.com/search?q=%search%" -O search.html -q 2>NUL
for /f "tokens=*" %%I in ('grep -P -o "<h3 class=.*?</h3>" search.html ^| sed -r -e "s/<[^>]+>//g"') do (
echo %%I
goto next
)
:next
set /p I="http://"<NUL
for /f "tokens=*" %%I in ('grep -E -o -e "<cite>[^<]+</cite>" search.html ^| sed -r -e "s/<[^>]+>//g"') do (
echo %%I
del /q search.html
goto :EOF
)
用法:search.bat up to 9 search terms here
例子:
C:\Users\me\Desktop>search command line google
googlecl - Command line tools for the Google Data APIs - Google ...
http://goosh.org/
C:\Users\me\Desktop>
也许这个?
@echo off
:start
cls
echo.
echo G O O G L E Web Search Version 1.1
echo.
echo Type search terms, and your internet browser will open it.
echo.
set /p Web=
start www.google.com/search?q=%Web%
goto start
将其保存为 .bat 并繁荣!
start www.google.com/