diff options
| author | St33v <github@f3rr3t.com> | 2015-08-24 12:35:53 +1000 |
|---|---|---|
| committer | St33v <github@f3rr3t.com> | 2015-08-24 12:35:53 +1000 |
| commit | c0c4557456459a8254edd8a47fcec19eb82d2adc (patch) | |
| tree | 6fc84a368dfe319e2154c070e6064f060147c3e3 | |
| parent | 0905e148e0d2752182acd0eaa7a6cc3535915837 (diff) | |
try again
| -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 |
