################################################# # # AUTHOR: Seyon Verdtzabella # DATE: June 4, 2002 # PROJECT: SSDS Formage Project # # NAME: convawk_p # VERSION: 0.1b # # USAGE: # # awk -f convawk_p filename # # DESCRIPTION: # This program is the work horse that actually converts # flatfile dbs to formage logfiles # ################################################# BEGIN { FS = "|" OFS = "\n" ORS = "\n@--------------------------------------@\n" } { print "@id@="$1,"@datatitle@="$2,"@source@="$3,"@media@="$4,"@callnum@="$5,"@workstation@="$6,"@category@="$7,"@subject@="$8,"@description@="$9 }