I need to print at local priter during telnet session. I foung some escape codes, but seems that I’m not using them correctly. I made a script at server side (included) but it doas not print nor gives any errors. What do I do wrong?
# Pass-thru printing for the Bash shell
echo “Test Pass-through printing”
echo ” File To Print: $1″
#echo -e “\034receive quiet\035”
tput mc5
cat $1
tput mc4
#echo -e “\034receive quiet off\035”
echo “Done.”