#!/bin/sh
arg=$1
warn=$2
if [ -z "$arg" ]; then
   arg="NONE"
fi

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