#!/bin/sh
echo "ECHO_ARGS_OK count=$#"
for arg in "$@"; do
    echo "  arg: $arg"
done
