Created
June 24, 2025 03:05
-
-
Save anakaiti/9f55495b4cfb5ff936d54c72762ece2e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env sh | |
| dir="$(mktemp -d)" | |
| ( | |
| cd $dir | |
| curl -Lk 'https://code.visualstudio.com/sha/download?build=stable&os=cli-alpine-x64' --output vscode_cli.tar.gz | |
| tar -xf vscode_cli.tar.gz | |
| ) | |
| $dir/code tunnel --accept-server-license-terms --random-name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment