#!/bin/sh
arg=$1
warn=$2

echo "This is the 'fail' command stdout with argument: $arg"
if [ ! -z "$warn" ]; then
   echo "This is the 'fail' command stderr with argument: $arg" >&2
fi
exit 10
