xref: /freebsd/contrib/one-true-awk/testdir/unbundle.awk (revision f59bb61e1eb4d1e4fc3c60cc14779d0668267cb2)
1# unbundle - unpack a bundle into separate files
2
3$1 != prev { close(prev); prev = $1 }
4           { print substr($0, index($0, " ") + 1) >$1 }
5