diff options
| -rwxr-xr-x | kmlstitch.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/kmlstitch.sh b/kmlstitch.sh index 5cc18e0..21df0bd 100755 --- a/kmlstitch.sh +++ b/kmlstitch.sh @@ -4,3 +4,22 @@ # 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 |
