6 lines
163 B
Bash
Executable File
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"
|