Created
February 10, 2025 06:44
-
-
Save fuzzbuster/4cfab9c8ba2faeed370b315318138f53 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
code --list-extensions > extensions_list.txt | |
echo "#!/bin/bash" > install_vscode_extensions.sh | |
echo "" >> install_vscode_extensions.sh | |
while IFS= read -r extension | |
do | |
echo "code --install-extension $extension" >> install_vscode_extensions.sh | |
done < extensions_list.txt | |
chmod +x install_vscode_extensions.sh | |
echo "done:install_vscode_extensions.sh" |
Author
fuzzbuster
commented
Feb 10, 2025
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment