Skip to content

Instantly share code, notes, and snippets.

@runexec
Created March 27, 2016 03:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save runexec/814f189f2686a1f2ad4b to your computer and use it in GitHub Desktop.
Save runexec/814f189f2686a1f2ad4b to your computer and use it in GitHub Desktop.
# Arch Linux Install dpkg
yaourt -S dpkg
# Fetch Latest
wget -O latest.html -k https://downloads.iridiumbrowser.de/ubuntu/pool/main/i/iridium-browser/
# Find AMD64 Packages
cat latest.html |
tr '"' '\n' |
tr '<' '\n' |
tr '>' '\n' |
grep "^https.*trusty1_amd64.deb" |
sed -e s/https/wget\ https/g > download.sh
# Download Packages
chmod +x download.sh
./download.sh
# Install Packages
sudo dpkg -i --force-depends ./*.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment