Created
November 10, 2016 15:30
-
-
Save blaylockbk/6d5cd021dc9241024a1474093334e1db to your computer and use it in GitHub Desktop.
untar select HRRR files from the compressed MesoWest archive
This file contains 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
# To untar just about everything | |
tar -xzvf models.tar.gz 20160101/models/hrrr/ | |
# To untar just the HRRR pressure fields for analysis hours | |
tar -zxvf models.tar.gz --wildcards --no-anchored 'hrrr.t*z.wrfprsf00.grib2' | |
$ to untar just the HRRR surface fields for analysis hours | |
tar -zxvf models.tar.gz --wildcards --no-anchored 'hrrr.t*z.wrfsfcf00.grib2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment