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