#!/usr/bin/env zsh # vim:ft=zsh: setopt no_unset # xtrace echo "running [${0}]" for i in $(seq 1 ${#}); do echo "\t${i} ]--\t${@[${i}]}" done exit 0