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