当前位置:K88软件开发文章中心电脑基础基础应用05 → 文章内容

Linux使用node.js执行命令的方法

减小字体 增大字体 作者:华军  来源:不详  发布时间:2019-1-31 15:34:26

本文就来介绍一下使用node.js命令行执行linux命令的方法。  var sys = require(‘sys’)  var exec = require(‘child_process’).exec;  // executes `pwd`  exec(“pwd”, function (error, stdout, stderr) {  sys.print(‘stdout: ’ + stdout);  sys.print(‘stderr: ’ + stderr);  if (error !== null) {  console.log(‘exec error: ’ + error);  }  });  有需要从前端操作服务器执行shell命令的需求  建立一个process.js文件  有需要从前端操作服务器执行shell命令的需求  建立一个process.js文件  var process = require(‘child_process’);  //直接调用命令  exports.createDir = function (){process.exec(‘D: && cd testweb && md mydir’,  function (error, stdout, stderr) {  if (error !== null) {  console.log(‘exec error: ’ + error);  }  });  }  //调用执行文件  exports.openApp = function(){  process.execFile(‘D:/testweb/aaa.bat’,null,{cwd:‘D:/’},  function (error,stdout,stderr) {  if (error !== null) {  console.log(‘exec error: ’ + error);  }  });  }  这里的命令是写死的,如果需要动态调用就把命令写成批处理文件(linux写shell脚本)  也可以使用process.exec(‘test.bat’,...) 和 process.exec(‘sh test’,...)执行文件  这里的命令是写死的,如果需要动态调用就把命令写成批处理文件(linux写shell脚本)  也可以使用process.exec(‘test.bat’,...) 和 process.exec(‘sh test’,...)执行文件       好啦,以上就是华军小编带给大家的全部内容了,是不是很简单呢?你学会了么?想了解更多的相关内容,请随时关注华军资讯动态吧,欢迎到华军来下载哦!

Linux使用node.js执行命令的方法