Terminal control/Hiding the cursor: Difference between revisions

m
m ({{omit from|GUISS}})
Line 52:
puts "back to normal"
after 1000</lang>
 
=={{header|UNIX Shell}}==
 
<lang sh>tput civis # Hide the cursor
sleep 5 # Sleep for 5 seconds
tput cnorm # Show the cursor</lang>
 
{{omit from|GUISS}}