send

Sends data.

send <data1> <data2>....

Remarks

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.

Example

send 'ABC'

; Send "ABC". (ASCII code of the character "A" is 65.)
send  65 66 67
myname='Tera Term'
send 'My name is ' myname '.'

See also "setsync" for the synchronous mode.