home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh -f
-
- # Ftpmenubase does the real work. This script exists merely to automatically
- # send the data file to ftp. Ftpmenu works using curses, if you dont
- # have your terminal type set correctly, things wont work. If you open
- # your xterm wider you will be able to see more. Ftpmenu should correctly
- # size to your terminal. If you make it tooo small or narrow then it
- # probably wont behave.
-
- # This is the long directory list.
- set listfile = $FTPEXTRAS/lists/archive.dir
-
- # Use this line instead, if you only want this months stuff in your
- # Menus.
- # listfile = $FTPEXTRAS/lists/archive.dir.short
-
- set thingstoget = $FTPEXTRAS/lists/thingstoget
- set abstractdir = $FTPEXTRAS/abstracts/abstract.sumex-aim.stanford.edu
-
- $FTPEXTRAS/bin/ftpmenubase $listfile $thingstoget $abstractdir
- clear
- ftp < $thingstoget&
-
-