#!/bin/sh

echo SOME_STDOUT_CONTENT
echo 1>&2 SOME_STDERR_CONTENT

sleep $(cat time_to_sleep.txt);

exit 1