Created
November 5, 2019 16:05
-
-
Save jgomezdans/40dd3e85a3e073dc94f36da83bd11bd9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This one fails! | |
cd /gws/nopw/j04/odanceo/jlgomezdans/flevo_out | |
ls -lht s2__lai_A2018001_0x* | awk '{print "/gws/nopw/j04/odanceo/jlgomezdans/flevo_out/"$9}' > flist.txt | |
gdalbuildvrt -input_file_list flist.txt testme.vrt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script works. Files are located in /work/scratch | |
cd /work/scratch/jlgomezdans/flevo_out/ | |
ls -lht s2__lai_A2018001_0x* | awk '{print "/work/scratch/jlgomezdans/flevo_out/"$9}' > flist.txt | |
gdalbuildvrt -input_file_list flist.txt testme.vrt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment