Created
May 8, 2024 20:13
-
-
Save SlideeScherz/c3eb491dc82d8ecc278aa15d0ceb5b9d to your computer and use it in GitHub Desktop.
bash usage
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 | |
# Install VS Code extensions | |
# if need to use powershell: https://gist.github.com/vmandic/ef80f1097521c16063b3b1c3a687d244 | |
# `code --install-extension` will echo | |
# echo Installing VS Code Extensions... | |
extensions=( | |
dsznajder.es7-react-js-snippets | |
dbaeumer.vscode-eslint | |
expo.vscode-expo-tools | |
ms-vscode.vscode-typescript-next | |
msjsdiag.vscode-react-native | |
) | |
# itr & install each extension | |
for extension in "${extensions[@]}"; do | |
# echo "$extension" | |
code --install-extension "$extension" | |
done | |
echo Done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment