home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1999 April / CD_Shareware_Magazine_31.iso / WIN95 / INTERNET / ftpctrl3b8.exe / %MAINDIR% / Scripts / Example19.ftp < prev    next >
Encoding:
Text File  |  1999-02-07  |  410 b   |  19 lines

  1. ; *****************************************************
  2. ; Example19.ftp
  3. ; =============
  4. ; This example shows the use of Numeric Variables in
  5. ; conjunction with execution parameters.
  6. ; -----------------------------------------------------
  7.  
  8. NumVariable i
  9.  
  10.  
  11. Let i=-1
  12. :Aftur
  13.   Let I=I+1
  14.   if %%i%% <= %%ParamCount%% then
  15.      Message "Parameter %%i%% = %%Param[%%i%%]%%"
  16.      goto Aftur
  17.   endif
  18.  
  19.