6 lines
153 B
Bash
Executable file
6 lines
153 B
Bash
Executable file
#!/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"
|