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