Created
July 8, 2019 23:08
-
-
Save maxchuquimia/e19f082054d0df0d8e2505963f84dd92 to your computer and use it in GitHub Desktop.
Opens VSCode with a file/workspace
This file contains hidden or 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 | |
DOC="$1" | |
if [ -z "$DOC" ] | |
then | |
DOC="." | |
fi | |
open -a "Visual Studio Code" "$DOC" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment