home *** CD-ROM | disk | FTP | other *** search
- trace(1);
-
- {BBSRECV.ACT}
-
- { This Action file initiates the receipt of a file from a BBS, }
- { automatically using XMODEM. It checks if a filename argument is }
- { given, and prompts if not. If you wish to use Kermit rather than }
- { XMODEM, change the parameter on the last line to KERRECV. }
-
- @a = @1
- if (@1 <> "") goto :noprompt
- @a = prompt("Enter receive filename: ");
- if (@a = "") exit;
- :noprompt
- "d;@a"; @return;
- cwait("?"); "x"; @return;
- cwait("...");
- recvfile(@a, "xmodem");