NodeJS-运行命令行指令

主要利用标准的 child_process 模块.

启动一个子进程运行命令

1
child_process.exec(command[, options][, callback])
  • command 就是一个包含命令的字符串
  • options 可以设置运行目录, 编码, 环境变量等等
  • callback, 默认传入三个参数 error, stdout, stderr
1
2
3
4
const { exec } = require('node:child_process');

exec('echo "The \\$HOME variable is $HOME"');
// The $HOME variable is escaped in the first instance, but not in the second.

NodeJS-运行命令行指令
http://example.com/2024/08/22/NodeJS-运行命令行指令/
作者
Jie
发布于
2024年8月22日
许可协议