repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
etc/protocols - sync with NetBSD-8
[minix.git]
/
tests
/
usr.bin
/
awk
/
d_assign_NF.awk
blob
52c39124cbf699e3a1477459db654f12a28deb64
1
# $NetBSD: d_assign_NF.awk,v 1.1 2012/03/11 18:35:59 jruoho Exp $
2
3
{
4
NF
=
2
5
print
"$0=`"
$
0
"`"
6
print
"$3=`"
$
3
"`"
7
print
"$4=`"
$
4
"`"
8
NF
=
3
9
print
"$0=`"
$
0
"`"
10
print
"$3=`"
$
3
"`"
11
print
"$4=`"
$
4
"`"
12
NF
=
4
13
print
"$0=`"
$
0
"`"
14
print
"$3=`"
$
3
"`"
15
print
"$4=`"
$
4
"`"
16
}