Skip to content

Instantly share code, notes, and snippets.

@securingsincity
Last active January 9, 2023 07:59
Show Gist options
  • Save securingsincity/70dcd0a94f9c9d369904df3b8d688147 to your computer and use it in GitHub Desktop.
Save securingsincity/70dcd0a94f9c9d369904df3b8d688147 to your computer and use it in GitHub Desktop.
VS Code bulk install plugins
#! /bin/sh
input="./vscodeplugins.txt"
while IFS= read -r line
do
echo "Installing - $line"
code --install-extension $line --force
echo "Installed - $line"
done < "$input"

VS Code bulk extensions installer.

  • run code --list-extensions > vscodeplugins.txt on the first machine

  • Then copy over vscodeplugins.txt to the new machine and run codeinstaller.sh on the new machine

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment