You can test if an array is empty using this function: {{{ awk function empty(a, i) { for(i in a) return 0; return 1} }}} This function comes from comp.lang.awk see this [[http://groups.google.com/group/comp.lang.awk/browse_thread/thread/6ed0f7a40952f092/c3b65ed3c7832f13?lnk=gst&q=empty+robbins#c3b65ed3c7832f13|post]]
Summary:
This change is a minor edit.
Username: