Sends data.
send <data1> <data2>....
Causes Tera Term to send characters to the host.
If <data> is a string, the string is sent to the host.
If <data> is an integer, its lowest-order byte (0-255) is regarded as an ASCII code of the character, and the character is sent to the host.
send 'ABC' ; Send "ABC". (ASCII code of the character "A" is 65.) send 65 66 67 myname='Tera Term' send 'My name is ' myname '.'
/* "CTRL+C" is 3 in binary so just send 3 like so. * * CTRL+A = 1, CTRL+B = 2.................. CTRL+Z = 26. */ send #3 /* Send the tab code. */ send #9
See also "setsync" for the synchronous mode.