#!/bin/sh set -o nounset -o errexit -o xtrace main(){ test $# || echo sssss echo $1 shift main "$@" } main