Last active
March 27, 2017 18:29
-
-
Save cassdeckard/246edaa833191f69862a8591498e09c2 to your computer and use it in GitHub Desktop.
Tools to help with playing back asciinema recordings in terminal
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/bash | |
| termsize() { | |
| echo -ne "\033[8;${1};${2}t" | |
| } | |
| asciicast=$1 | |
| orig_height=0 | |
| orig_width=0 | |
| height=0 | |
| width=0 | |
| echo -ne '\033[18t' && IFS=';' read -n999 -dt -t1 -s csi orig_height orig_width | |
| if [ "$orig_height" -eq 0 -o "$orig_width" -eq 0 ] | |
| then | |
| echo "ERROR: Could not read your terminal dimensions" >&2 | |
| exit 1 | |
| fi | |
| read -d"\000" pyscript <<HERE | |
| import sys,json | |
| json=json.load(sys.stdin) | |
| print("{0},{1}".format(json['height'], json['width'])) | |
| HERE | |
| IFS=',' read height width < <(python -c "$pyscript" < $asciicast) | |
| if [ "$height" -eq 0 -o "$width" -eq 0 ] | |
| then | |
| echo "ERROR: Could not read terminal dimensions of asciicast" >&2 | |
| exit 1 | |
| fi | |
| termsize $height $width | |
| asciinema play "$asciicast" | |
| termsize $orig_height $orig_width |
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/bash | |
| sed -e 's/\\u001b\[6n//g' -e 's/\\u001b\[>c//g' -i '' $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment