#!/bin/bash
foo()
{
	echo $1 $2 $*
}

echo $1 $2 
#echo $argv[1] $argv[2] NBG for bash

shift
shift

foo $*
