4 lines
156 B
Plaintext
4 lines
156 B
Plaintext
|
#!/bin/sh
|
||
|
# Pipe a command into this and each output line will rewrite the previous one
|
||
|
sed --unbuffered '2,$s|^|\\e[1A\\e[K|' | xargs -d '\n' -L 1 echo -e
|