摘要: 假如有脚本 first.sh: #!/bin/bash # #@file:first.sh # echo 'your are in first file' 如何在其它Shell脚本中调用first.sh呢?主要有三种方法:source、点号以及sh命令。 1.source #!/bin/bash # 阅读全文
posted @ 2021-08-10 11:47 鸭子船长 阅读(1901) 评论(0) 推荐(0) 编辑
摘要: 在终端中设置环境变量 export http_proxy="http://localhost:port" export https_proxy="http://localhost:port" 取消设置: unset http_proxy unset https_proxy 在docker中设置代理, 阅读全文
posted @ 2021-08-10 11:08 鸭子船长 阅读(430) 评论(0) 推荐(0) 编辑