Quote:
Originally Posted by silver18
I'm a newbie here....just two questions:
- if I send "eips 10 10 hello", how can I delete this printed string using a shell command?
- I know the range for row is 0:608 and for col 0:800 but do eips need the value in hex, dec or what else?
Thanks a lot!!!
|
This request is almost IDENTICAL to one I answered in the past. The answer is out there in this forum ready to be found with a search...
EDIT: Just print a line of spaces on top of it to erase it. To display "hello" for one second, do this:
PHP Code:
eips 10 10 "hello"
sleep 1
eips 10 10 " "
The values are decimal numbers. The string should be in double-quotes.