我有一个本地文件夹,我用作多个小样本和玩具代码的便笺簿。我在这个目录中存储了许多python,C ++,shell脚本等。
我正在使用Visual Studio Code(在OS X上),我正在研究its tasks来运行/编译代码片段而无需切换到终端。
例如,我发现this following task将在当前打开的文件上运行python。
// A task runner that runs a python program
{
"version": "0.1.0",
"command": "/usr/bin/python",
"args": ["${file}"]
}
此任务将使用python作为任务运行器,而不管我当前正在编辑的文件类型。
如何根据文件类型(或在多个命令之间选择)执行任务来运行命令?即如果我正在编辑C ++文件,它将运行clang ++。
答案 0 :(得分:31)
您始终可以使用bash作为任务运行器,然后将任意终端命令指定为您的任务。
{
"version": "0.1.0",
"command": "bash",
"isShellCommand": true,
"showOutput": "always",
"args": [
"-c"
],
"tasks": [
{
"taskName": "My First Command",
"suppressTaskName": true,
"isBuildCommand": true,
"args": ["echo cmd1"]
},
{
"taskName": "My Command Requiring .bash_profile",
"suppressTaskName": true,
"args": ["source ~/.bash_profile && echo cmd2"]
},
{
"taskName": "My Python task",
"suppressTaskName": true,
"args": ["/usr/bin/python ${file}"]
}
]
}
关于这里发生的事情的几点说明:
-c
用于所有任务,方法是将其放入args
命令列表中,以便我们可以运行任意命令。 echo
语句只是示例,但可以是您的bash终端可执行的任何内容。args
数组将包含一个要传递给bash -c
的字符串(单独的项目将被视为bash命令的多个参数,而不是与-c
arg相关联的命令)。suppressTaskName
用于保持taskName
不在混合~/.bash_profile
这不会给你任何类型的文件扩展名检测,但你至少可以使用 cmd + p 然后输入“task”来获取你的任务列表。您始终可以使用isBuildCommand
和isTestCommand
标记2个最常用的命令,以通过 cmd + shift + b 或 cmd + shift + t 。
This answer提供了一些可能对您有用的有用信息。
答案 1 :(得分:6)
这个答案最初针对的是一个更复杂的解决方案,但是在接受的答案中提供的简单shell运行程序任务格式证明更有用。请参阅下文,了解现在的情况。
此处的限制是VS Code仅限于给定工作空间的单个高级构建任务/命令。允许多个子任务,但它们仅限于使用顶级“命令”,但可以提供不同的“参数”。这非常适合使用类似于make,ant或msbuild的构建系统的环境。 E.g;
{
"version": "0.1.0",
"command": "make", // command must appear here
"tasks" : [
{
"taskName": "clean",
"suppressTaskName": false, // false by default
//"command": "somethingelse", // not valid here
"args": ["${file}"] // if required
},
{
"taskName": "install"
// ...
}
]
}
有两种选择;
让自定义脚本尝试仅在task.json中给出参数来运行编译/执行。
-- the shell file would be a simple
"$@" # run what I get
-- the tasks.json
"args": ["clang++", "-std=c++14", "-O2", "${file}"]
让exectuable运行(./a.out
)需要付出更多努力。简单地添加它作为参数不起作用,如果它在那里,则需要shell脚本执行它。
在给定文件扩展名和文件名的情况下,将输出切换和执行执行到自定义脚本。这证明更容易实现,并在shell脚本中提供更多控制。
{
"version": "0.1.0",
"isShellCommand": true,
"taskName": "generic build",
"showOutput": "always",
"args": ["${fileExtname}", "${file}"]
"command": "./.vscode/compileme.sh", // expected in the "local settings" folder
//"command": "~/compileme.sh", // if in HOME folder
}
shell脚本,compileme.sh;
#!/bin/sh
# basic error checking not shown...
echo "compilation being executed with the arguments;"
echo "$@"
filetype=$1
file=$2
if [ $filetype = ".cpp" -o $filetype = ".cxx" ] ; then
clang++ -std=c++14 -Wall -Wextra -pedantic -pthread $file && ./a.out
elif [ $filetype = ".c" ]
then
clang -std=c11 -Wall -Wextra -pedantic -pthread $file && ./a.out
elif [ $filetype = ".sh" ]
then
$file
elif [ $filetype = ".py" ]
then
python $file
else
echo "file type not supported..."
exit 1
fi
鉴于上面列出的选项,第二个选项更可取。此实现适用于OS X,但可以根据需要轻松移植到Linux和Windows。我将继续关注这一点,并尝试跟踪VS代码构建任务的更改,基于文件的构建或支持多个命令可能是一个受欢迎的补充。
我的tasks.json支持一些运行程序,以及构建的默认值,它将消息作为提醒输出。它使用shell作为跑步者,现在看起来像......
{
"version": "0.1.0",
"isShellCommand": true,
"taskName": "GenericBuild",
"showOutput": "always",
"command": "sh",
"suppressTaskName": false,
"args": ["-c"],
"tasks": [
{
"taskName": "no build",
"suppressTaskName": true,
"isBuildCommand": true,
"args": [
"echo There is no default build task, run a task by name..."
]
},
{
"taskName": "cpp",
"suppressTaskName": true,
"args": [
"clang++ -std=c++14 -Wall -Wextra -pedantic -pthread \"${file}\" && ./a.out"
]
},
{
"taskName": "shell",
"suppressTaskName": true,
"args": [
"\"${file}\""
]
},
{
"taskName": "python",
"suppressTaskName": true,
"args": [
"python \"${file}\""
]
},
{
"taskName": "c",
"suppressTaskName": true,
"args": [
"clang -std=c11 -Wall -Wextra -pedantic -pthread \"${file}\" && ./a.out"
]
}
]
}
答案 2 :(得分:2)
您可以使用复合任务来运行多个命令 https://code.visualstudio.com/docs/editor/tasks#_compound-tasks
答案 3 :(得分:0)
最简单的方法是将它们添加以“;”分隔在外壳中:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# HERE
RewriteBase /blogportal/
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
答案 4 :(得分:-1)
您可以直接编写和运行自定义脚本文件,而不是python
等。在脚本文件中,您将提取文件扩展名,以便调用python
,clang
或编译器/翻译器所需的任何内容。
所以你的任务文件看起来像这样;
// A task runner that runs a program
{
"version": "0.1.0",
"command": "${workspaceRoot}\\runProgram.sh"
"args": ["${file}"]
}
答案 5 :(得分:-1)
我制作了这个剧本。
它要求您在环境中安装python IDLE。 这将打开IDLE并在每次运行任务时运行python文件(CTRL + Shift + B)。
{
"version": "0.1.0",
"command": "/usr/bin/idle",
"isShellCommand": false,
"showOutput": "never",
"args": ["-r","${file}"]
}