summaryrefslogtreecommitdiff
path: root/test/fscaret.awk
blob: 134820d7e5da490a62c4189bc68496b88b7cac8d (plain)
1
2
3
4
5
6
7
8
BEGIN {
	FS="^."
	OFS="|"
}
{
	$1 = $1
}
1