index
:
egawk
master
Enhanced GNU Awk
kaz@kylheku.com
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
test
/
setrec0.awk
blob: 8d978aa75af211224795af8ca73524b74673c879 (
plain
)
1
2
3
4
5
6
7
8
function reassign
(
x
,
y
)
{
$0
=
x
print
y
}
{
reassign
(
"larry"
,
$1
)
}