#!/bin/bash

if [ "$*" == "--out-dir /tmp /tmp/hello.rs" ]; then
    echo "#!/bin/bash" > /tmp/hello
    echo "echo hello, world" >> /tmp/hello
    chmod +x /tmp/hello
    exit 0
fi
exit 1
