Skip to content

Instantly share code, notes, and snippets.

@kghost
Last active October 6, 2015 06:58
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 kghost/2954483 to your computer and use it in GitHub Desktop.
Save kghost/2954483 to your computer and use it in GitHub Desktop.
ttyresize.sh
#! /bin/bash
tty -s || exit 1
trap '' 1 2 3 18
stty -echo
echo 1b5b313874 | xxd -ps -r
read -d t c
stty echo
`echo $c | sed -ne 's/\x1b\[8;\([0-9]*\);\([0-9]*\)$/stty rows \1 cols \2/p'`
stty echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment