home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mr2i201.zip / PACK.ORG < prev    next >
Text File  |  1997-06-17  |  663b  |  31 lines

  1. /*
  2.     MR/2 ICE - PACK.CMD
  3.  
  4.     Copyright (c) 1997, Nick Knight
  5.     All Rights Reserved.
  6.  
  7.     Author:     Nick Knight
  8.     Created:    03/26/97
  9.     Usage:        pack account folder
  10.     Purpose:    pack.cmd uses zip.exe or an equivelent to compress
  11.                 the contents of an MR/2 ICE folder into a single zip
  12.                 file.
  13.     US Mail:    Nick Knight, PO Box 22366, Beachwood, Ohio 44122
  14.     Fidonet:    1:157/2 or 1:/157/200
  15.     Internet:    nick@secant.com
  16.     Compuserve: 76066,1240
  17.     BBS:        Private messages on Nerd's Nook (216) 356-1772 or 1872
  18.  
  19. */
  20. parse arg account path
  21.  
  22. '@echo off'
  23.  
  24. 'cd 'account'\'path
  25. 'zip -m -9 messages *.rcv *.out *.art'
  26.  
  27. say ' '
  28. pause Press any key to continue
  29.  
  30. '@exit'
  31.