Skip to content

Instantly share code, notes, and snippets.

@ianfabs
Created September 20, 2018 17:01
Show Gist options
  • Select an option

  • Save ianfabs/90f8970a9af6be37c0613a6ff86ef4f9 to your computer and use it in GitHub Desktop.

Select an option

Save ianfabs/90f8970a9af6be37c0613a6ff86ef4f9 to your computer and use it in GitHub Desktop.
Just a script to install the things I need for work, since I switch computers a lot
#!/bin/bash
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
# Install repo
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
# Update apt-get
sudo apt-get update
# Install
sudo apt-get install code-insiders
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment