0

I am trying to send ctrl + c to another screen.

How can I do this?

screen -S railsServer -p 0 -X stuff $'\cc'

screen -S railsServer -p 0 -X stuff $'^C'

However these don't seem to work.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
bezzoon
  • 1,755
  • 4
  • 24
  • 52

1 Answers1

0
screen -S railsServer -p 0 -X stuff $'\003'

If someone can explain what the $'\003' represents that would be awesome!

Nathaniel Ford
  • 20,545
  • 20
  • 91
  • 102
bezzoon
  • 1,755
  • 4
  • 24
  • 52