summaryrefslogtreecommitdiff
path: root/kmlstitch.sh
blob: 21df0bd101c636ea28dc3126cea54ce857890c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Shell script to stitch kml files together.
# SJP August 2015

# name the data directory
datadir='../data/'
echo $datadir

# Functions ##########################

readKml()
{
	echo $file
}

######################################


for file in '$datadir'*
do
	echo  'file is $file\n'
done

echo "finished"	

ls -f $datadir | while read -r file; do wc "$file"; done