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