Skip to content

Instantly share code, notes, and snippets.

@kislyuk
Created October 16, 2013 23:28
Show Gist options
  • Save kislyuk/7016783 to your computer and use it in GitHub Desktop.
Save kislyuk/7016783 to your computer and use it in GitHub Desktop.
#!/bin/bash -e
PV=5.10.1-8ubuntu2
for PN in libperl-dev libperl5.10 perl-base perl; do
wget "http://archive.ubuntu.com/ubuntu/pool/main/p/perl/${PN}_${PV}_amd64.deb"
dpkg --install --force-all "${PN}_${PV}_amd64.deb"
done
for PN in perl-modules; do
wget "http://archive.ubuntu.com/ubuntu/pool/main/p/perl/${PN}_${PV}_all.deb"
dpkg --install --force-all "${PN}_${PV}_all.deb"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment