Last active
October 14, 2025 06:43
-
-
Save joseluisq/4740e37a9f2358357381e308aa39c52d to your computer and use it in GitHub Desktop.
Revisions
-
joseluisq revised this gist
Apr 12, 2019 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ _**Note:** [Unix-like systems](https://en.wikipedia.org/wiki/Operating_system#Un 1) Export your extensions to a shell file: ```sh code --list-extensions | sed -e 's/^/code --install-extension /' > my_vscode_extensions.sh ``` 2) Verify your extensions installer file: @@ -16,8 +16,8 @@ less my_vscode_extesions.sh ### Install your extensions (optional) Run your `my_vscode_extensions.sh` using [Bash](https://www.gnu.org/software/bash/) command: ```sh bash my_vscode_extensions.sh ``` -
joseluisq renamed this gist
Mar 1, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
joseluisq renamed this gist
Mar 1, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
joseluisq created this gist
Sep 12, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ # How to export your VS Code extensions from terminal _**Note:** [Unix-like systems](https://en.wikipedia.org/wiki/Operating_system#Unix_and_Unix-like_operating_systems) only._ 1) Export your extensions to a shell file: ```sh code --list-extensions | sed -e 's/^/code --install-extension /' > my_vscode_extesions.sh ``` 2) Verify your extensions installer file: ```sh less my_vscode_extesions.sh ``` ### Install your extensions (optional) Run your `my_vscode_extesions.sh` using [Bash](https://www.gnu.org/software/bash/) command: ```sh bash my_vscode_extesions.sh ```