xref: /freebsd/contrib/one-true-awk/testdir/unbundle.awk (revision 64c2a712d661db9be31f02fe97c3b59710290ae3)
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