有什么方法可以隐藏当前位置和 jdk 位置吗?
Is there any way to hide current location and jdk loaction?
有什么办法隐藏这个"cd /home/anindra/Documents/oppsClass ; /usr/bin/env /usr/lib/jvm/java-11-openjdk-amd64/bin/java -Dfile.encoding=UTF-8 -cp /home/anindra/Documents/oppsClass/bin App "screenshot
您正在 VS Code 的终端中启动 Java 应用程序。
恕我直言,可以跳过 - cd
cd ...
命令,因为您已经在 Documents/oppsClass
目录中。
- 通常您的
PATH
上有一个 java
可执行文件,因此无需指定完整路径 /usr/lib/jvm/java-11-openjdk-amd64/bin/java
- 您也可以将要隐藏的行粘贴到 shell 脚本中并执行此脚本。
无法在集成 Terminal 中删除或隐藏这些执行脚本,但我们有一些解决方法:
在launch.json, set "console": "internalConsole",
. Then Run without Debugging, the result will be shown in Debug Console and no execution scripts:
在launch.json
中设置"console": "externalTerminal",
。然后运行不调试,结果会显示在external Terminal并且没有执行脚本:
有什么办法隐藏这个"cd /home/anindra/Documents/oppsClass ; /usr/bin/env /usr/lib/jvm/java-11-openjdk-amd64/bin/java -Dfile.encoding=UTF-8 -cp /home/anindra/Documents/oppsClass/bin App "screenshot
您正在 VS Code 的终端中启动 Java 应用程序。
-
恕我直言,可以跳过
- cd
cd ...
命令,因为您已经在Documents/oppsClass
目录中。 - 通常您的
PATH
上有一个java
可执行文件,因此无需指定完整路径/usr/lib/jvm/java-11-openjdk-amd64/bin/java
- 您也可以将要隐藏的行粘贴到 shell 脚本中并执行此脚本。
无法在集成 Terminal 中删除或隐藏这些执行脚本,但我们有一些解决方法:
在launch.json, set
"console": "internalConsole",
. Then Run without Debugging, the result will be shown in Debug Console and no execution scripts:在
launch.json
中设置"console": "externalTerminal",
。然后运行不调试,结果会显示在external Terminal并且没有执行脚本: