#!/bin/bash

if [ $# -eq 0 ]; then
    echo "usage inputFolder=./current/"
    folder=./current/
elif [ $# -eq 1 ]; then
    folder=$1 
fi
python python_reader.py --filePath=$folder"grd2_20100915.nc" --outPath=$folder
python python_reader.py --filePath=$folder"grd2_20100916.nc" --outPath=$folder
python python_reader.py --filePath=$folder"grd2_20100917.nc" --outPath=$folder
python python_reader.py --filePath=$folder"grd2_20100918.nc" --outPath=$folder
python python_reader.py --filePath=$folder"grd2_20100919.nc" --outPath=$folder
