08-24-2007 05:47 AM
Hi,
I would like to clear screen from TCL sheel. I tried commands that work on Unix Tcl implementation (puts "\033\[2J" but had not succeded. Anybody knows if that is even possible?
Solved! Go to Solution.
08-24-2007 08:12 AM
Try:
proc clear_term { } {
exec "terminal international"
puts "\x1B\x5B\x32\x4A\x1B\x5B\x30\x3B\x30\x48"
}
08-24-2007 08:12 AM
Try:
proc clear_term { } {
exec "terminal international"
puts "\x1B\x5B\x32\x4A\x1B\x5B\x30\x3B\x30\x48"
}
08-25-2007 01:03 PM
EXCELLENT!! Thank you very much.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide