我想使用參數在運行bash腳本節點JS child_process.exec()
如何將參數傳遞給節點exec函數中的bash命令?
在文檔是String The command to run, with space-separated arguments
,但
child.exec("cat path_to_file1 path_to_file2")
不起作用。內部更改爲
/bin/sh -c cat path_to_file1 path_to_file2
失敗。我如何正確運行?在外殼我會修這樣
/bin/sh -c 'cat path_to_file1 path_to_file2'
(沒寫回調,因爲我只問命令PARAM)
不知道我理解你的問題。 'exec(「cat file1 file2」)'工作正常。 – vinayr