Skip to content

Instantly share code, notes, and snippets.

@pmoust
Last active August 29, 2015 14:03
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 pmoust/dc4fe3bd0bca0109f272 to your computer and use it in GitHub Desktop.
Save pmoust/dc4fe3bd0bca0109f272 to your computer and use it in GitHub Desktop.
install latest skype for ubuntu precise/trusty
#!/bin/sh
sudo killall -9 skype
wget -q -O ~/skype-4.3.deb http://www.skype.com/go/getskype-linux-beta-ubuntu-64 &&
sudo apt-get -y remove skype &&
sudo dpkg -i ~/skype-4.3.deb
if [ $? -eq 0 ]; then
echo "\nSkype installed..\n"
fi
rm -f ~/skype-4.3.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment