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