File: delete_tags.awk

package info (click to toggle)
magyarispell 1.2%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,952 kB
  • sloc: sh: 1,032; awk: 404; makefile: 265; sed: 153; lisp: 102
file content (8 lines) | stat: -rw-r--r-- 169 bytes parent folder | download
1
2
3
4
5
6
7
8
# convert hu_HU_morph.aff to hu_HU.aff (for spell checker)
BEGIN{FS=" "}
/^.FX/&&(NF==6){
	printf "%s %s %s %s %s", $1, $2, $3, $4, $5
        print""
	next
}
{print$0}