Skip to content

Instantly share code, notes, and snippets.

@blazetopher
Created October 31, 2011 18:41
Show Gist options
  • Save blazetopher/1328408 to your computer and use it in GitHub Desktop.
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
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