gpt4 book ai didi

javascript - 在 shell 脚本循环中运行 Node JS 文件

转载 作者:行者123 更新时间:2023-12-03 12:12:23 25 4
gpt4 key购买 nike

我的 shell 脚本看起来像

for i in {1..5}
do
echo "Welcome $i times"
exec node nodefile.js
done

nodefile.js 看起来像

console.log 'running nodefile'

当我调用./shellscript.sh时,只会显示“Welcome x times”和“running nodefile”一次。

那里缺少什么?有什么我必须在 Node 文件或其他文件中返回的内容吗?

最佳答案

试试这个

for i in {1..5}
do
echo "Welcome $i times"
node process.js
done

关于javascript - 在 shell 脚本循环中运行 Node JS 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24904296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com