#! /bin/dash # $ ./accessing_args.sh one two "three four" # one # two # three four for a in "$@" do echo "$a" done