diff --git a/Simple2D/elastic_marmousi.sh b/Simple2D/elastic_marmousi.sh new file mode 100755 index 0000000..384381b --- /dev/null +++ b/Simple2D/elastic_marmousi.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +wget https://s3.amazonaws.com/open.source.geoscience/open_data/elastic-marmousi/elastic-marmousi-model.tar.gz + +tar xzvf elastic-marmousi-model.tar.gz && rm elastic-marmousi-model.tar.gz + +cp elastic-marmousi-model/model/MODEL_DENSITY_1.25m.segy.tar.gz . +cp elastic-marmousi-model/model/MODEL_S-WAVE_VELOCITY_1.25m.segy.tar.gz . +cp elastic-marmousi-model/model/MODEL_P-WAVE_VELOCITY_1.25m.segy.tar.gz . + +for i in *.tar.gz; do + tar xzvf "$i" && rm -r "$i" +done \ No newline at end of file