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