2016-09-06 169 views
10

使用Node的child_process模塊,我想通過cygwin shell執行命令。這就是我想:執行NodeJS的cygwin命令

var exec = require('child_process').execSync; 
exec('mkdir -p a/b/c', {shell : 'c:/cygwin64/bin/bash.exe -c'}); 
 
TypeError: invalid data 
    at WriteStream.Socket.write (net.js:641:11) 
    at execSync (child_process.js:503:20) 
    at repl:1:1 
    at REPLServer.defaultEval (repl.js:262:27) 
    at bound (domain.js:287:14) 
    at REPLServer.runBound [as eval] (domain.js:300:12) 
    at REPLServer. (repl.js:431:12) 
    at emitOne (events.js:82:20) 
    at REPLServer.emit (events.js:169:7) 
    at REPLServer.Interface._onLine (readline.js:212:10) 

我可以看到Node's child_process.js will add the /s and /c switches,無論是集shell選項,bash.exe不知道如何處理這些論點做。

我找到了一個工作,圍繞這個問題,但它確實不理想:

exec('c:/cygwin64/bin/bash.exe -c "mkdir -p a/b/c"'); 

做上述顯然只能在Windows不是Unix系統上運行。

如何在NodeJS的cygwin shell中執行命令?

回答

2

這是不是一個完整的通用解決方案,因爲更將需要一些的exec()選項做,但是這應該讓你編寫代碼,上的Unix,Windows和Cygwin的工作,後來區分二。

此解決方案假定Cygwin安裝在名稱包含字符串cygwin的目錄中。

var child_process = require('child_process') 
    , home = process.env.HOME 
; 

function exec(command, options, next) { 
    if(/cygwin/.test(home)) { 
    command = home.replace(/(cygwin[0-9]*).*/, "$1") + "\\bin\\bash.exe -c '" + command.replace(/\\/g, '/').replace(/'/g, "\'") + "'"; 
    } 

    child_process.exec(command, options, next); 
} 

Cygwin的下運行時,你可以或者劫持child_process.exec條件:

var child_process = require('child_process') 
    , home = process.env.HOME 
; 

if(/cygwin/.test(home)) { 
    var child_process_exec = child_process.exec 
    , bash = home.replace(/(cygwin[0-9]*).*/, "$1") + "\\bin\\bash.exe" 
    ; 

    child_process.exec = function(command, options, next) { 
    command = bash + " -c '" + command.replace(/\\/g, '/').replace(/'/g, "\'") + "'"; 

    child_process_exec(command, options, next) 
    } 
}