Run the examples like you would run a script.
You may run directly from the same directory as long as the script is marked at executable
chmod +x my_script.tsand the script contains a valid shebang line at the top.
#!/usr/bin/env auraescriptYou may run the script as follows:
./my_script.tsAdditionally you can leverage the auraescript binary directly to execute your script which will execute a script without being executable and without a shebang.
auraescript myscript.ts