美文网首页
设置zsh代理

设置zsh代理

作者: wFan | 来源:发表于2017-08-16 12:10 被阅读0次

    vi ~/.zshrc

    # where proxy

    proxy () {
      export http_proxy="http://127.0.0.1:8888"
      export https_proxy="http://127.0.0.1:8888"
      echo "HTTP Proxy on"
    }

    # where noproxy

    noproxy () {
      unset http_proxy
      unset https_proxy
      echo "HTTP Proxy off"
    }

    相关文章

      网友评论

          本文标题:设置zsh代理

          本文链接:https://www.haomeiwen.com/subject/kxkirxtx.html