Skip to content

Instantly share code, notes, and snippets.

@jonasnick
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonasnick/11404412 to your computer and use it in GitHub Desktop.
Save jonasnick/11404412 to your computer and use it in GitHub Desktop.
#!/bin/sh
# sends every input character to the specified screen
screen_name=t1
while read -r char
do
screen -S $screen_name -X stuff "$char"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment