Skip to content

Instantly share code, notes, and snippets.

@UbuntuEvangelist
Last active December 12, 2018 10:27
Show Gist options
  • Save UbuntuEvangelist/06ccdfd08b43d5c54aa130bb354de4df to your computer and use it in GitHub Desktop.
Save UbuntuEvangelist/06ccdfd08b43d5c54aa130bb354de4df to your computer and use it in GitHub Desktop.
PowerShell Install Ubuntu 16.04.5 LTS
#!/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