ターミナルで bash myscript.sh
を実行し、プロキシを変更しようとしています
スクリプトは以下の通りです
bash:
1#!/bin/bash 2 3proxy=hogeproxy 4export HTTP_PROXY=$proxy 5export HTTPS_PROXY=$proxy 6export ALL_PROXY=$proxy 7export all_proxy=$proxy 8 9npm -g config set proxy=$HTTP_PROXY 10npm -g config set http_proxy=$HTTP_PROXY 11npm -g config set https_proxy=$HTTP_PROXY 12 13git config --global http.proxy $HTTP_PROXY 14git config --global https.proxy $HTTP_PROXY
困っていること: npm, gitの変更は反映されるが、 HTTP_PROXY, HTTPS_PROXY, ALL_PROXYへの変更が反映されない
Qiita等を見て export ALL_PROXY=<url>
で設定できると読んだのですが、設定できないため困っています
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。