#!/bin/sh

for arg in "$@"
do
  echo "$arg"
done

