#!/bin/csh
#
#  AWK ץ CR Ƕڤ줿ܸʸϤΤǤ
# "%","#" ǻϤޤԤ򥳥ȤȤߤʤưޤ
# ʸζ(2byte;"")ȡֵ(\t)ޤ
#
# Usage: gawk -f (the file) File_Name
# 	 (the file) File_Name
# 	 (the file) < <Standard_Input>
#
gawk '{ if($0 ~ /^%|^#|""/) { next } print $0 }' |\
gawk '{ { gsub(/(\t|)/,"") } print $0 }'
#
# End of File
