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