Skip to content

Instantly share code, notes, and snippets.

@imkheong
imkheong / install_powershellcore.sh
Last active May 2, 2017 02:31
Ubuntu 14.04 - Install PowerShell Core
# Reference https://github.com/PowerShell/PowerShell/blob/master/docs/installation/linux.md
# Import the public repository GPG keys
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
# Register the Microsoft Ubuntu repository
curl https://packages.microsoft.com/config/ubuntu/14.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
# Update apt-get
sudo apt-get update