RosettaCodeData/Task/Terminal-control-Inverse-video/UNIX-Shell/terminal-control-inverse-video-1.sh
2023-07-01 13:44:08 -04:00

5 lines
96 B
Bash

#!/bin/sh
tput mr # foo is reversed
echo 'foo'
tput me # bar is normal video
echo 'bar'