3 lines
113 B
Text
3 lines
113 B
Text
jq -nr '"\u001b[2J", # clear the terminal
|
|
"\u001b[6;3HHello" # move to (6,3) and print Hello
|
|
'
|