Commit ac4581fa authored by Mario Chirinos Colunga's avatar Mario Chirinos Colunga 💬

L2

parent 2de28701
#!/bin/sh
#Convert L1C Products to L2A
INPUTDIR=$2 #Top directory with a L1C Subirectory
#OUTPUTDIR=$3 #L2A directory
cd $INPUTDIR
for f in $(find . -type f -name '*.zip')
do
if [ ! -d $../L2A ]; then
mkdir ../L2A
fi
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment