gpt4 book ai didi

visual-studio-code - VS Code 在 task.json 中使用来自 ~/.bashrc 的别名

转载 作者:行者123 更新时间:2023-12-05 06:34:31 24 4
gpt4 key购买 nike

我在我的 linux 系统中为我的交叉编译器的路径设置了别名。现在我想在我的 VS Code 的 task.json 中使用这个别名。所以我写了这个片段:

{
"version": "2.0.0",
"tasks": [
{
"label": "Test",
"type": "shell",
"linux": {
"command": "My_gcc"
},
}
]
}

但是我明白了

错误 127:找不到命令“My_gcc”

为什么会出现此错误?

最佳答案

只需按如下方式更改您的任务: "command": "source ~/.bash_profile && My_gcc"

这将使它在尝试使用您的别名之前将 source ~/.bash_profile 纳入范围。

关于visual-studio-code - VS Code 在 task.json 中使用来自 ~/.bashrc 的别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50219450/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com