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