Hi, i want to control the cygwin terminal with escape sequences generated by a Perl program.
I can clear the screen with the echo command:
% echo -e "\033[H\033[J"
but if i write a small inline perl program, i can't:
% perl -e 'print "\033[H\033[J"'
This doesn't work even if i put the screen in 'raw mode' without echo
(with system('stty -echo raw') in the perl program).
Can you help me?
Philippe
