#!/bin/bash
SEQ=/usr/bin/seq
a=( $( cat test.txt ) )
for i in $($SEQ 0 $((${#a[@]} - 1)))
do
	echo "cp filetoCopy.txt ${a[$i]}"	
done

