标签: javascript phantomjs
我正在尝试在PhantomJS上运行以下命令:
sqlite3 mydb.db < mysql.sql
这可以通过spawn实现,还是需要将其放入bash脚本并调用脚本?
spawn
答案 0 :(得分:0)
显然你不能像在bash脚本中那样使用管道,但是你可以在javascript中手动管道它们。请查看Streams和child_process。
提示:使用spawn().stdin.write和fs.openFile.read。
spawn().stdin.write
fs.openFile.read