aboutsummaryrefslogtreecommitdiff
path: root/scripts/bbunscroll
blob: 15102c4229e46cd7908cbbb9b799a71053993d48 (plain)
1
2
3
4
5
#!/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"