xref: /freebsd/contrib/one-true-awk/bugs-fixed/unicode-fs-rs-1.awk (revision f32a6403d34654ac6e61182d09abb5e85850e1ee)
1*f32a6403SWarner LoshBEGIN {
2*f32a6403SWarner Losh	FS="␟"
3*f32a6403SWarner Losh	RS="␞"
4*f32a6403SWarner Losh	OFS=","
5*f32a6403SWarner Losh}
6*f32a6403SWarner Losh{ print $1, $2, $3 }
7