Skip to content

Instantly share code, notes, and snippets.

@ashish-ad
Last active December 19, 2021 15:45
Show Gist options
  • Save ashish-ad/1397647c931227d8ef733bf4ec08bf89 to your computer and use it in GitHub Desktop.
Save ashish-ad/1397647c931227d8ef733bf4ec08bf89 to your computer and use it in GitHub Desktop.
Vs code extension sharing
#!/bin/sh -e
code --list-extensions > vscode-extensions.txt
#!/bin/sh -e
while read line; do code --install-extension "$line";done <extensions.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment