home *** CD-ROM | disk | FTP | other *** search
/ Internet Tools (CDV) / cdv_internet_tools.iso / KATALOG / ARCHIV / PROG / W21126.ZIP / psu.ref < prev    next >
Encoding:
Text File  |  1998-05-25  |  1.4 KB  |  47 lines

  1. Programmers Site Updater
  2. ver. 0.03
  3.  
  4. PSU takes a plaintext script file assuming the extension .PSU.
  5.  
  6. *********
  7. Reference
  8. *********
  9.  
  10. *** Command Line Options
  11. -q : Quiet operation meaning that no output appears on the screen.
  12. -r : Enable recursion directories where appropriate (default is disabled)
  13. -H : Set hostname (use %hostname% in scriptfile)
  14. -N : Set username (use %username% in scriptfile)
  15. -P : Set password (use %password% in scriptfile)  
  16.  
  17. *** Script Commands
  18. OPEN (or CONNECT) hostname[,name:password]
  19. - Tries to connect to hostname. If name and password are not specified
  20. anonymous login is assumed.
  21. Example: OPEN ftp.myhost.org,myname:1234uty
  22.  
  23. CLOSE (or LOGOUT or QUIT)
  24. - Closes connection to host
  25.  
  26. PUT (or SEND or COPY) filename [remote filename]
  27. - Tries to send filename to the current directory on the ftpserver. If remote
  28. filename is not specified the same name assumed.
  29. Example: PUT C:\AUTOEXEC.BAT MyDosAutoexec.bat
  30.  
  31. MPUT "wildcard filespecification"
  32. - Tries to send multiple files to the current directory on the ftpserver. If
  33. recursion is enabled directories are recursed and created as needed.
  34. Example: MPUT C:\myhomepage\*.*
  35.  
  36. RECURSE ON|OFF
  37. - Enables/disables recursion of directories.
  38.  
  39. QUIET ON|OFF
  40. - Turns output on/off
  41.  
  42. CHDIR (or setdir) dirname
  43. - CHange directory on the ftpserver. If the specified directory does not exist
  44. it is created. 
  45.  
  46.  
  47.