Created
March 7, 2014 00:54
-
-
Save yuuichi-fujioka/9402974 to your computer and use it in GitHub Desktop.
Screen tips
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create Screen with window title | |
screen -S ${screen_name} -t ${window_title} | |
# Send text to input buffer with window title | |
screen -S ${screen_name} -p ${window_title} -X stuff $'echo hello\r' | |
# Send Ctrl c to window | |
screen -S ${screen_name} -p ${window_title} -X stuff $'\003' | |
# Send up to window | |
screen -S ${screen_name} -p ${window_title} -X stuff $'\033[A' | |
# Send enter to windwow | |
screen -S ${screen_name} -p ${window_title} -X stuff $'\015' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment