为什么我不能将 Unix Nohup 与 Bash For 循环一起使用?
例如,此行失败:
$ nohup for i in mydir/*.fasta; do ./myscript.sh "$i"; done > output.txt&
-bash: syntax error near unexpected token `do
正确的方法是什么?
For example this line fails:
$ nohup for i in mydir/*.fasta; do ./myscript.sh "$i"; done > output.txt&
-bash: syntax error near unexpected token `do
What's the right way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
因为“nohup”需要一个单字命令及其参数 - 而不是 shell 循环结构。你必须使用:
Because 'nohup' expects a single-word command and its arguments - not a shell loop construct. You'd have to use:
对我来说,乔纳森的解决方案没有正确重定向到output.txt。这个效果更好:
nohup bash -c 'for i in mydir/*.fasta;执行 ./myscript.sh "$i";完成'>输出.txt &
For me, Jonathan's solution does not redirect correctly to output.txt. This one works better:
nohup bash -c 'for i in mydir/*.fasta; do ./myscript.sh "$i"; done' > output.txt &
您可以用一行完成,但您可能也想明天完成。
You can do it on one line, but you might want to do it tomorrow too.