Skip to content

Instantly share code, notes, and snippets.

@pbojinov
Forked from heyalexej/install-charles-proxy.sh
Last active April 8, 2018 02:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save pbojinov/0fdf7a88fdf4a816bc0a to your computer and use it in GitHub Desktop.
Save pbojinov/0fdf7a88fdf4a816bc0a to your computer and use it in GitHub Desktop.
install charles proxy from deb source
#!/usr/bin/env sh
set -e
# install charles proxy from deb sources.
# http://www.charlesproxy.com
sudo sh -c 'echo "deb http://www.charlesproxy.com/packages/apt/ charles-proxy main" > /etc/apt/sources.list.d/charles-proxy.list'
wget -q http://www.charlesproxy.com/packages/apt/PublicKey -O - | sudo apt-key add -
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install -y charles-proxy
# or for the brave
#sudo apt-get install -y charles-proxy-beta
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment