#!/bin/sh

recurarrg () {
  if [ $# -gt 0 ] ; then
   echo $1
   shift
   recurarrg "$@"
  fi
}

recurarrg jeden dwa trzy cztery
