Sending commands to an existing screen session?

5,468

Try this example from screen faq:

screen -S test -p 0 -X stuff 'top^M'

It will run top command in the screen session named test.

^M is a control character you can put by pressing CTRL+V, ENTER in bash.

Share:
5,468

Related videos on Youtube

Seventoes
Author by

Seventoes

Web developer turned iPhone programmer turned tech support turned fullstack engineer. I love doing... things!

Updated on September 17, 2022

Comments

  • Seventoes
    Seventoes over 1 year

    I have a Java app running in a screen session (A game server), and I'd like to be able to write a script to send commands to it periodically (with cron probably), but I'm not sure how to send commands to a running screen session.

    Is this possible? Might be complicated by the fact that I'm not just sending more shell commands to the screen, but putting text into the running Java console.