如何将 CTRL-A 和 CTRL-D 的信号从 shell 脚本发送到屏幕?下一个代码对我不起作用。屏幕进程仍在前台运行,我希望它在后台执行。任何的想法?
#!/bin/sh
#TweetBot notifications with Growl
cd ~/node-tweetbot/
screen -S "tweet" node app.js -X stuff "'^A' '^D'"
如何将 CTRL-A 和 CTRL-D 的信号从 shell 脚本发送到屏幕?下一个代码对我不起作用。屏幕进程仍在前台运行,我希望它在后台执行。任何的想法?
#!/bin/sh
#TweetBot notifications with Growl
cd ~/node-tweetbot/
screen -S "tweet" node app.js -X stuff "'^A' '^D'"