Altera_Forum
Honored Contributor
12 years agoBackspace character in System Console
I am testing some memory using System Console and I would like to make a simple progress bar which will show current progress. For that I would need a backspace character.
The Tcl interpreter from Centos 7 works as expected:
$ tclsh
% puts $tcl_version
8.5
% puts "abc\bd"
abd
But System Console gives this:
% puts $tcl_version
8.5
% puts "abc\bd"
abcd
Is there any way I can delete current characters or maybe whole line in System Console?