home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / UPCHECK / EXZT223K.ZIP / SENDCOM.ZIP / SENDCOM.DOC next >
Text File  |  1990-08-19  |  3KB  |  95 lines

  1. *:::::::::::::::::::::::::::[ DISCLAIMER ]:::::::::::::::::::::::::::::::::*
  2.  
  3. SENDCOM.EXE by Bill Shields is released to public domain.
  4.  
  5. SENDCOM.EXE is provided AS IS without any warranty,  expressed or implied.
  6. This  includes  without  limitation  the  fitfulness  to  a particular
  7. purpose or application and any warranties of merchantability.  While I tried
  8. to be as thorough as  possible while  debugging SENDCOM.EXE, I shall  not  be
  9. liable for any damages, whether direct, indirect, special,  or  consequential
  10. arising  from a failure of SENDCOM.EXE to operate in a manner desired by the
  11. user. I shall  not be  liable for  any damage to data or property which may
  12. by caused directly or indirectly  by use of SENDCOM.EXE.
  13.  
  14. In no event will I be liable to you for any damages, including any lost
  15. profits, lost savings or  other incidental or consequential  damages arising
  16. out of your use or inability to use the program, or for any claim by any
  17. other party.
  18.  
  19. *::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*
  20.  
  21. SYNTAX  
  22. ======
  23. SENDCOM comport [/F filename [filter]] string
  24.  
  25. EXAMPLE <string>
  26. =======
  27. C>SENDCOM 2 CR THIS IS LINE ONE CR this is line two CR this is line three
  28.  
  29. Would display the following on the remote and host terminal...
  30. THIS IS LINE ONE
  31. this is line two
  32. this is line three
  33.  
  34. Where CR must have spaces on both sides.  It will set a Carriage Return/Linfeed
  35. and continue displaying line.
  36.  
  37.  
  38. EXAMPLE <filename>
  39. =======
  40. C>SENDCOM 2 /F filename
  41.  
  42. Will display the file "filename" if it finds it.  If not a error message, 
  43. stating that the filename is missing, will appear on remote and host terminals.
  44. The commandline must be in the above sequence for the file function to work.
  45.  
  46. C>SENDCOM 2 /F filename filter
  47.  
  48. Will only display the lines of text that match the "filter".  The following
  49. batch file gives an example.
  50.  
  51. %%%%%%%%[ PCBTEST.BAT ]%%%%%%%%%
  52. echo off
  53. cls
  54. testfile %1 arc zip
  55. if errorlevel == 98 goto end
  56. if errorlevel == 2 goto zip
  57. if errorlevel == 1 goto arc
  58. :zip
  59. pkunzip -t %1 > pcbfail.txt
  60. goto continue
  61. :arc
  62. pkxarc -t %1 > pcbfail.txt
  63. :continue
  64. if errorlevel == 1 goto end
  65. SENDCOM 2 CR
  66. SENDCOM 2 /F PCBFAIL.TXT Testing:
  67. SENDCOM 2 CR Integrity  check
  68. del pcbfail.txt
  69. :end
  70. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  71.  
  72. It displays this data to remote and host terminals
  73. -----------------------------------------------------
  74. Testing: CNTLOG.DOC    OK
  75. Testing: CNTLOG.CFG    OK
  76. Testing: CNTLOG.EXE    OK
  77.  
  78. Integrity check (PASSED/FAILED supplied by PCBOARD).
  79. -----------------------------------------------------
  80.  
  81. based on the below PCBFAIL.TXT file (filtered).
  82.  
  83. ---------------------------------------------------------------------
  84. PKUNZIP (tm)    FAST!    Extract Utility    Version 1.02    10-01-89
  85. Copyright 1989 PKWARE Inc.  All Rights Reserved.  PKUNZIP/h for help
  86.  
  87. Searching ZIP: CNTLOG.ZIP
  88. Testing: CNTLOG.DOC    OK
  89. Testing: CNTLOG.CFG    OK
  90. Testing: CNTLOG.EXE    OK
  91. ---------------------------------------------------------------------
  92.  
  93.  
  94.  
  95.