Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_unix/sys/src/cmd/dict/t.awk – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
NF == 2	{
2
		if($2 !~ / or / || $2 ~ /\(or/)
3
			print $0
4
		else {
5
			n = split($2, a, / or /)
6
			for(i = 1; i <= n; i++) {
7
				printf "%s\t%s\n", $1, a[i]
8
			}
9
		}
10
	}
11
NF != 2 {
12
	print $0
13
	}