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