home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / TEXT / UTILITY / AWK320.ZIP / DEARC.AWK < prev    next >
Encoding:
Text File  |  1990-02-07  |  162 b   |  13 lines

  1. # extract files from a text archive
  2.  
  3. $1=="-ARCHIVE-" {
  4.     if (file)
  5.         close(file)
  6.     file = $2
  7.     print file
  8.     next
  9. }
  10. {
  11.     print > file
  12. }
  13.