Sends the raw commandline to Director, which will handle it as lingo command and execute it.

Examples:

-- send single command
SendScript.exe alert("Hello World!")

-- ^^ is automatically replaced with carriage return (RETURN)
SendScript.exe put 444^^put "aaa"

-- send contents of "code.txt" (single line only)
set /p CODE=<code.txt
SendScript.exe %CODE%

-- send each line of code.txt
for /f "delims=" %x in (code.txt) do SendScript.exe %x
