#!/bin/sh

# for loop without 'in list' - echoes arguments one per line
for arg
do
   echo $arg
done

