Created
April 11, 2012 14:22
-
-
Save TauPan/2359615 to your computer and use it in GitHub Desktop.
adapt terminal settings to a remote serial line
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
#!/bin/sh | |
stty size|awk '{print "export TERM=screen;export LINES=" $1 ";export \ | |
COLUMNS=" $2 ";stty rows $LINES;stty cols $COLUMNS;reset"}' | |
# /etc/screenrc: | |
# register f '^A:exec .!. pastescreensize.sh^M' | |
# bind + process f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment