Created
October 31, 2011 18:41
-
-
Save blazetopher/1328408 to your computer and use it in GitHub Desktop.
Dump the .cdl for all .nc files in the current directory - Requires that the ncdump utility is installed
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
for file in `la | grep '\.nc' | awk {'print $9'}`;do ncdump -h $file;done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment