摘要:
假如有脚本 first.sh: #!/bin/bash # #@file:first.sh # echo 'your are in first file' 如何在其它Shell脚本中调用first.sh呢?主要有三种方法:source、点号以及sh命令。 1.source #!/bin/bash # 阅读全文
摘要:
在终端中设置环境变量 export http_proxy="http://localhost:port" export https_proxy="http://localhost:port" 取消设置: unset http_proxy unset https_proxy 在docker中设置代理, 阅读全文