Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.24 KB

README.md

File metadata and controls

57 lines (42 loc) · 1.24 KB

How to export your VS Code extensions from terminal (Linux or PowerShell):

Note: Unix-like systems only.

  1. Export your extensions to a shell file (manually):
code --list-extensions | sed -e 's/^/code --install-extension /' > my_vscode_extensions.sh

or execute:

./list-vsc-extensions.sh
  1. Verify your extensions installer file:
less my_vscode_extesions.sh

or

less install-vsc-extensions.sh

Install your extensions (optional)

Run your my_vscode_extensions.sh or install-vsc-extensions.sh using Bash command:

bash my_vscode_extensions.sh

or

bash install-vsc-extensions.sh

Note: [For PowerShell] (https://docs.microsoft.com/en-us/powershell/).

  1. Export your extensions to a ps file:
./list-vsc-extensions.ps1
  1. Verify your extensions installer file:
less install-vsc-extensions.ps1

Install your extensions (optional)

Run your install-vsc-extensions.ps1 using PowerShell command:

install-vsc-extensions.ps1