是否可以在bash中运行nodejs程序?

是否可以在bash中运行nodejs程序?

我的问题很简单:我有一个用nodejs编写的程序,想用该语言无限循环运行它bash,这可能吗?

答案1

没问题

#!/bin/sh
while true
do
    node <myapp>
done

您也可以将其用作单衬里 while true; do; node <myapp>; done;

相关内容