home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / gnusmalltalk / get_update < prev    next >
Text File  |  1992-02-15  |  377b  |  21 lines

  1. #!/bin/sh
  2.  
  3. ### Not complete yet!!
  4.  
  5. # scan all things which match smalltalk
  6. # get the one highest version, prefer patch releases
  7. # record current version info, so next time the update can get only
  8. # what it needs
  9.  
  10. ftpcmd=${FTP:-ftp}
  11. anon=${ANONYMOUS_USER:-anonymous}
  12.  
  13. ${ftpcmd} -n <<-EOF
  14.     open prep.ai.mit.edu
  15.     user ${anon} smalltalk
  16.     cd pub/gnu
  17.     dir smalltalk* st$$
  18.     quit
  19. EOF
  20.  
  21.