home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / bin / p205.zip / lw_p.cmd < prev    next >
OS/2 REXX Batch file  |  1994-12-18  |  349b  |  18 lines

  1. @echo off
  2. if "%2" == "receive" goto receive
  3. if "%2" == "send" goto send
  4. goto error
  5.  
  6. :receive
  7. p.exe -type %1 -handle %7 -receive -protocol %3 -device com%4 -speed %5 -directory %6
  8. goto end
  9.  
  10. :send
  11. p.exe -type %1 -handle %7 -send -protocol %3 -device com%4 -speed %5 %6
  12. goto end
  13.  
  14. :error
  15. echo Unrecognized transfer direction "%2"
  16.  
  17. :end
  18.