#!/bin/csh
#
#  AWK ץܸʸϤ֡פǶڤäưԤĤ˽ľ
# ΤǤ֡פޤޤʤʸϤϢ뤵ޤ
# '#','%'ǻϤޤԤȶԤϥȤȤߤʤ̵뤷ޤ
# ʸζ(2byte;"")ȡֵ(\t)ޤ
#
# Usage: gawk -f (the file) File_Name
# 	 (the file) File_Name
# 	 (the file) < <Standard_Input>
#
gawk '{ if($0 ~ /^%|^#|""/) { next } print $0 }' ORS="" |\
gawk '{ { gsub(//,"\n") } print $0 }' |\
gawk '{ { gsub(/(\t|)/,"")} print $0 }'
#
# End of File
