Last active
August 29, 2015 14:03
-
-
Save pmoust/dc4fe3bd0bca0109f272 to your computer and use it in GitHub Desktop.
install latest skype for ubuntu precise/trusty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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