6 lines
96 B
Bash
6 lines
96 B
Bash
|
|
#!/bin/sh
|
||
|
|
tput mr # foo is reversed
|
||
|
|
echo 'foo'
|
||
|
|
tput me # bar is normal video
|
||
|
|
echo 'bar'
|