7 lines
153 B
Text
7 lines
153 B
Text
|
#!/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"
|