Skip to content

Instantly share code, notes, and snippets.

@agausmann
Created April 15, 2022 15:44
Show Gist options
  • Save agausmann/96fe31f780067ff5d68e26cefeedba66 to your computer and use it in GitHub Desktop.
Save agausmann/96fe31f780067ff5d68e26cefeedba66 to your computer and use it in GitHub Desktop.
Download and extract updates for VS Code in a single command
#!/bin/sh
URL="https://code.visualstudio.com/sha/download?build=stable&os=linux-x64"
OUTPUT="$HOME/.local/lib"
curl -sL "$URL" | tar -zxv -C "$OUTPUT"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment