#!/bin/sh
# t2l
#   read a table with : delimiter , print out list with == delim
#   idea: add a colon and == to end of line, then convert each
#	  colon to a newline.
#     usage: t2l data.table > data.list
#
	sed -e 's/$/:==/' $* | tr ':' '\n'
#
#   note: you can do this with sed with 
#
#      sed -e 's/$/:==/' -e 's/:/\
#      /g'
#
#   but that is sort of ugly.
