Last active
December 12, 2018 10:27
-
-
Save UbuntuEvangelist/06ccdfd08b43d5c54aa130bb354de4df to your computer and use it in GitHub Desktop.
PowerShell Install Ubuntu 16.04.5 LTS
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/bash | |
| # This script will setup powershell into Ubuntu 16.04 LTS | |
| curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - | |
| curl https://packages.microsoft.com/config/ubuntu/14.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list | |
| sudo apt-get update | |
| sudo apt-get install -y powershell | |
| pwsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment