6 lines
163 B
Plaintext
6 lines
163 B
Plaintext
|
#!/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"
|