RosettaCodeData/Task/Terminal-control-Preserve-screen/UNIX-Shell/terminal-control-preserve-screen.sh
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

5 lines
126 B
Bash

#!/bin/sh
tput smcup # Save the display
echo 'Hello'
sleep 5 # Wait five seconds
tput rmcup # Restore the display