#!/bin/bash

GoThroughDataSets(){
	local hat=`ls *.csv`
	for i in $hat
	do 
		echo $i | bash Create10by3way.sh
	done
}
 
GoThroughDataSets
