150k views
5 votes
What command would you use to place the cursor in row 10 and column 15 on the screen or in a terminal window

User Andres D
by
7.4k points

1 Answer

0 votes

Answer:

tput cup 10 15

Step-by-step explanation:

tput is a command for command line environments in Linux distributions. tput can be used to manipulate color, text color, move the cursor and generally make the command line environment alot more readable and appealing to humans. The tput cup 10 15 is used to move the cursor 10 rows down and 15 characters right in the terminal

User Csi
by
7.6k points