#!/bin/bash

if [ "$*" == "/tmp/hello.js" ]; then
    printf "hello, world\r"
    exit 0
fi
exit 1
