CRT/SecureCRT 3.0 scripts require a header that identifies the
script language and the interface version. The header should begin
on the first line of the script file and each header line should
contain the following two lines:
Note, each header line must have a '#' character as the first character
on the line. Header lines may also be empty lines that begin with
'#' followed by whitespace and a carriage return.
You should substitute <language> with the name of the actual
script language in which the script is written. For example a VBScript
starts with this:
# $language = "JScript"
# $interface = "1.0"
// JScript code here...