bb/scripts/bbunscroll
Bruce Hill 88fd9c416b Moved bbstartup into a script, renamed helper/ -> scripts/, and added
bbshutdown script. Also tweaked some of the precedence.
2020-02-24 03:39:44 -08:00

6 lines
163 B
Bash
Executable File

#!/bin/sh
# Display text from the current line upward (instead of downward)
input="$(cat)"
printf "\\033[$(echo "$input" | wc -l)A\\033[J" >/dev/tty
echo "$input"