我有一个应该在后台运行的脚本.我一打运行bash就必须回答一个问题.我怎么能这样做?
(nohup python script.py lst '<<HERE yes HERE' &)
<<< heredoc是多线的,就像
原文链接:https://www.f2er.com/bash/384594.htmlsomescript <<EOF & input EOF
heredoc分隔符应该在最后一行单独
你可以使用一行heredoc和<<<<,如:
somescript <<<"this coming from stdin" &