跳到主要内容

1、wget

更新于:2024年3月24日

wget

image-20230911210157421

目录

[toc]

案例:下载脚本并执行 -q -O-选项

  • 案例
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
-q,  --quiet               quiet (no output).
-O, --output-document=FILE write documents to FILE.

这个命令用于安装 NVM(Node Version Manager),一个允许你安装和管理多个 Node.js 版本的工具。命令的各部分含义如下:

  • wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh:这部分命令通过 wget 工具从给定的 URL 下载 NVM 的安装脚本。-q表示静默模式,即不显示下载进度或消息。-O-表示将下载的数据输出到标准输出(stdout)

  • | bash:这部分将前一个命令的输出(NVM 安装脚本)作为输入传递给 bash 命令执行。这意味着下载的安装脚本将被立即执行,从而开始 NVM 的安装过程。

总的来说,这个命令行操作实现了从互联网下载 NVM 安装脚本并立即执行它的功能,无需先手动保存脚本到本地再执行,便捷地安装 NVM。

  • 案例(自己测试)
[root@linux ~]# wget -qO- https://onedayxyy.cn/scripts/system_info-2024.1.1.sh | bash

image-20240324085630349

  • 案例
# wget -q -O- nginx-service.default.svc.cluster.local:5000
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>
/ #

案例:--no-check-certificate选项

[root@gitlab-runner ~]#wget https://mirrors.bfsu.edu.cn/apache/maven/maven-3/3.8.5/binaries/apache-maven-3.8.5-bin.zip --no-check-certificate

img

关于我

我的博客主旨:

  • 排版美观,语言精炼;
  • 文档即手册,步骤明细,拒绝埋坑,提供源码;
  • 本人实战文档都是亲测成功的,各位小伙伴在实际操作过程中如有什么疑问,可随时联系本人帮您解决问题,让我们一起进步!

🍀 微信二维码 x2675263825 (舍得), qq:2675263825。

image-20230107215114763

🍀 微信公众号 《云原生架构师实战》

image-20230107215126971

🍀 语雀

https://www.yuque.com/xyy-onlyone

image-20230912072007284

🍀 csdn https://blog.csdn.net/weixin_39246554?spm=1010.2135.3001.5421

image-20230107215149885

🍀 知乎 https://www.zhihu.com/people/foryouone

image-20230107215203185

最后

好了,关于本次就到这里了,感谢大家阅读,最后祝大家生活快乐,每天都过的有意义哦,我们下期见!