#!/usr/bin/env bash function Test() { echo $1 } for i in "$@"; do Test $i done