- !/bin/bash
- Create proxy.sh
cat << 'EOF' | sudo tee /usr/local/bin/proxy.sh > /dev/null
- !/bin/bash
export ProIP="http://127.0.0.1:2080" export http_proxy="$ProIP" export https_proxy="$ProIP"
- Execute the command passed as arguments
"$@" EOF
- Make proxy.sh executable
sudo chmod +x /usr/local/bin/proxy.sh
- Add bash completion for proxy.sh
cat << 'EOF' | sudo tee /etc/bash_completion.d/proxy.sh > /dev/null _proxy_sh() {
local cur prev opts COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" opts=$(compgen -c) # List of all available commands
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0
} complete -F _proxy_sh proxy.sh EOF
- Reload bash completion
source /etc/bash_completion.d/proxy.sh
echo "proxy.sh setup complete with bash completion."