带参数的 SCREEN PHP 分离模式
我有一个简单的 php 脚本,我想以与屏幕分离的模式从控制台启动。
我的问题是:
程序需要两个参数,并且该脚本的输出应该写入指定的文件中。
那么该怎么做
screen -d -m php bl.php 3 2 > rob.dat
请帮助我。
I had a simple php script, which i would like to start from the console in a detached mode with screen.
my problem is:
the program needs two arguments and the output of this script should be write in a specified file.
so how to do it like
screen -d -m php bl.php 3 2 > rob.dat
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以先启动 screen,执行命令,然后将其分离。
You may start screen first, execute the command and then detach it.