Write more then one file at single command using cat
Write more then one file at single command using cat
cat > .npmrc <<EOF
proxy=http://10.0.2.2:3128
https-proxy=http://10.0.2.2:3128
registry=http://repo.biskinler.com/api/npm/npm
strict-ssl=false
EOF
cat > .bowerrc <<EOF
{
"proxy":"http://10.0.2.2:3128",
"https-proxy":"http://10.0.2.2:3128",
"strict-ssl" : false
}
EOF
cat > .condarc <<EOF
proxy_servers:
http: http://127.0.0.1:3128
https: http://127.0.0.1:3128
EOF
cat > .gitconfig <<EOF
[http]
proxy = http://10.0.2.2:3128
[https]
proxy = http://10.0.2.2:3128
[url "https://github.com/"]
insteadOf = git://github.com/
insteadOf = "github:"
insteadOf = "github.com/"
[user]
name = Ahmet Faruk Biskinler
EOF
Created 6 years ago by Ahmet Faruk Bişkinler
Last Updated 6 years ago by Ahmet Faruk Bişkinler