#/bin/bash

hairetu=(a b c d e f d)

for i in ${hairetu[@]}
do
echo $i
done

exit 0


こんな感じか?