大家好,又见面了,我是你们的朋友全栈君。
大家好,我是Lex 喜欢欺负超人那个Lex 擅长领域:python开发、网络安全渗透、Windows域控Exchange架构 今日重点: 1、Linux骚操作:纯命令行玩转GoogleChrome浏览器; 2、在Linux命令行打开足球宝贝的搜索截图
windows下的chrome浏览器,大家肯定都玩的666了吧。
今天,出一篇猎奇的文章
跟大家介绍一下,如何在Linux纯命令行
玩转谷歌Chrome浏览器,边看欧洲杯,边看足球宝贝
完成搜索、截图、访问网页等等功能
[root@harbor ~]# vim /etc/yum.repo.d/google-chrome.repo
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
[root@harbor ~]# yum -y install google-chrome-stable --nogpgcheck
#查看Google浏览器版本信息
[root@harbor ~]# google-chrome -version
Google Chrome 91.0.4472.106
[root@harbor ~]#
1、命令行使用百度搜索
#直接输入百度及搜索内容
#截屏百度
[root@harbor tmp]# google-chrome --no-sandbox --headless --disable-gpu
--screenshot https://www.baidu.com/
[0615/170830.274431:WARNING:headless_browser_main_parts.cc(106)] Cannot create Pref Service with no user data dir.
[0615/170830.329462:ERROR:gpu_init.cc(440)] Passthrough is not supported, GL is swiftshader
[0615/170831.542038:INFO:headless_shell.cc(648)] Written to file screenshot.png.
2、查看搜索结果图片 screenshot.jpg
#截屏百度
[root@harbor tmp]# google-chrome --no-sandbox --headless --disable-gpu
--screenshot https://www.baidu.com/
[0615/170830.274431:WARNING:headless_browser_main_parts.cc(106)] Cannot create Pref Service with no user data dir.
[0615/170830.329462:ERROR:gpu_init.cc(440)] Passthrough is not supported, GL is swiftshader
[0615/170831.542038:INFO:headless_shell.cc(648)] Written to file screenshot.png.
效果如下 ↓ ↓ ↓
4、命令行搜索欧洲杯足球宝贝
linux会在命令行搜索并保存 足球宝贝的搜索结果
#查看欧洲杯足球宝贝的搜索结果
[root@harbor tmp]# google-chrome --no-sandbox --headless --disable-gpu
--screenshot https://www.baidu.com/s?wd=%E8%B6%B3%E7%90%83%E5%AE%9D%E8%B4%9D
[0615/170830.274431:WARNING:headless_browser_main_parts.cc(106)] Cannot create Pref Service with no user data dir.
[0615/170830.329462:ERROR:gpu_init.cc(440)] Passthrough is not supported, GL is swiftshader
[0615/170831.542038:INFO:headless_shell.cc(648)] Written to file screenshot.png.
5、命令行打开欧洲杯图片如下:
1、搜索命令
[root@localhost tmp]# google-chrome-stable --no-sandbox --headless --disable-gpu
--dump-dom https://www.baidu.com/
2、打开百度,打印搜索结果
我们搜索的内容,会以html格式的内容,打印处理。
3、效果如下
例如,使用百度搜索csdn结果如下:
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/132210.html原文链接:https://javaforall.cn