open vsc in terminal mac command code example
Example 1: open visual studio code from terminal mac
#Add Bash alias in .bash_profile ?
$ alias code="open -a /Applications/Visual\ Studio\ Code.app"
#Open Visual Studio Code by command
$ code .
Example 2: adding code . in the terminal
code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}