我必须在Windows上工作,但是我将UNIX命令转换为Windows命令时遇到了一些困难。
我有一个执行此命令的node.js服务器:
const execSync = require('child_process').execSync;
...
...
let output = execSync('output=$(wget --post-data '
+ '"' + text + '" ' + '"localhost:' + port
+ '/?properties={"annotators": ' + '"' + annotators + '", "outputFormat": "'
+ format + '"' + "}' -qO -) && echo $output', { encoding: 'utf8' });
你有什么想法吗?
答案 0 :(得分:0)
首先这是bash语法,你需要把东西转换成windows cmd行格式。
答案 1 :(得分:0)
仍然可以在Windows上运行UNIX命令。您可以从以下GitHub存储库下载为Windows编译的所有UNIX命令:https://github.com/George-Ogden/UNIX