在Shell脚本中打开VS Code项目

时间:2018-10-04 17:19:04

标签: bash shell visual-studio-code

我想通过外壳脚本在vscode中打开目录。这是我的脚本:

#!/bin/bash

CODE=`which code`
PATH=$GOPATH/src/github.com/myusername
if [ ${CODE}=="/usr/bin/code" ]; then
    ${CODE} ${PATH}$1;
fi

执行时:

  

$ bash myscript.sh项目名称

     

/ usr / bin / env:“ bash”:没有这样的文件或目录

给什么?

1 个答案:

答案 0 :(得分:1)

似乎vscode尚不支持。

请在github https://github.com/Microsoft/vscode/issues/13138上参考此问题