# reformat rcsd index to html # # Vol: 1 No: 1 Jan-0-84 Page: 0 Contributor: Decker, R., et.al. # Key Words: Sailplane, Design, F3B # The 1983 World Champion & his sailplane are discussed w/ 3 view drawing. # Continued on page 3 # awk -F\| ' BEGIN { printf "\n" printf "\n" } function table_beg(hdr) { printf "\n" printf "

%s

\n", hdr printf "\n" printf " " printf "
Title/Description" printf " Contributors" printf " Page" printf " Keywords" printf "\n" } function table_end() { printf "
\n" printf "\n" } { if (issue != $3) { if (issue != "") { table_end() printf "
\n" } issue = $3 split(issue, fld, "-") table_beg(fld[2] " " fld[1]) } printf " " printf " %s", $1 printf " %s", $2 printf " %s", $4 printf " %s", $5 printf "\n" } END { table_end() printf "\n" printf "\n" }' $*