home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / email / tsfaqn38.zip / FAQFTP.TXT < prev    next >
Text File  |  1993-10-16  |  5KB  |  104 lines

  1. From ts@uwasa.fi Sat Oct 16 00:00:00 1993
  2. Subject: FAQFTP.TXT contents
  3.                                   Copyright (c) 1993 by Timo Salmi
  4.                                                All rights reserved
  5.  
  6. FAQFTP.TXT Additional questions related to FTP (File Transfer
  7. Program).
  8.  
  9. Comments and corrections are solicited.
  10.  
  11. ..................................................................
  12. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  13. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  14. Faculty of Accounting & Industrial Management; University of Vaasa
  15. Internet: ts@uwasa.fi  or timo.salmi@uwasa.fi; FIN-65101,  Finland
  16.  
  17. --------------------------------------------------------------------
  18. 1) What is anonymous FTP? How do I get files from sites using it?
  19. 2) How to read scrolling text files on-line during an FTP session?
  20. --------------------------------------------------------------------
  21.  
  22. From ts@uwasa.fi Sat Oct 16 00:00:01 1993
  23. Subject: Basics of anonymous FTP
  24.  
  25. 1. *****
  26.  Q: What is anonymous FTP? How do I get files from sites using it?
  27.  
  28.  A: Both these questions are covered in PD2ANS.TXT which is a part
  29. of this same Frequently Asked Questions collection. See the very
  30. first question in the said file. For the second part of the question
  31. see Appendix A of PD2ANS.TXT. Much the same information is given in
  32. garbo.uwasa.fi:/pc/pd2/camfaq.zip item "Hands on! A newbie's quick
  33. start to get you going. An example."
  34. --------------------------------------------------------------------
  35.  
  36. From ts@uwasa.fi Sat Oct 16 00:00:02 1993
  37. Subject: Reading text files on-line in FTP
  38.  
  39. 2. *****
  40.  Q: How to read scrolling text files on-line during an FTP session?
  41.  
  42.  A: Take a moment to study the two tricks in the demonstration
  43. session log below.  The tricks are "ls -CF" and "ls -lF |less".  A
  44. third trick is to have a terminal emulator with a scroll-back
  45. buffer.  Eg MsKermit has this convenient feature.  You can even read
  46. a text file with theses trick by applying eg "get README |less".
  47. You can direct a listing to a file.  Example "ls -lF dir.log".  You
  48. shell from the session by "!less dir.log" to read the file.
  49.                *** IMPORTANT NOTICE ***
  50. Handy as these tricks are, you should use them judiciously, since
  51. they keep the FTP connection open.  Recall that there may be many
  52. simultaneous users at the more popular FTP sites.  It is better to
  53. decrease the load by first getting the text files (eg the example
  54. README, especially if it is long) and read them at your leasure at
  55. your own host after you have closed the FTP connection.  There may
  56. even access limitations on the maximum simultaneous number of FTP
  57. users, so do not hog the connection.
  58.   > ftp garbo.uwasa.fi                             <--- your input
  59.   Connected to garbo.uwasa.fi.
  60.   220 garbo.uwasa.fi FTP server ready.
  61.   Name (garbo.uwasa.fi:ts): anonymous              <--- your input
  62.   331 Guest login ok, send ident as password.
  63.   Password: [your email address]                   <--- your input
  64.   230 Guest login ok, access restrictions apply.
  65.   ftp> ls -CF                                      <--- your input
  66.   200 PORT command successful.
  67.   150 Opening ASCII mode data connection for /bin/ls.
  68.   .FSP_CONTENT    bin/            lost+found/     pc/             ql/
  69.   .message        dev/            ls-lR.Z         photos/         unix/
  70.   CD-ROM.INF      etc/            mac/            private-ajh/    usr/
  71.   CDROM/          garbo-gifs/     mirror/         private-hv/     windows/
  72.   HELP            home-brew/      next/           private-ts/
  73.   226 Transfer complete.
  74.   remote: -CF
  75.   211 bytes received in 0.03 seconds (6.8 Kbytes/s)
  76.   ftp> cd /pc/ts                                   <--- your input
  77.   250 CWD command successful.
  78.   ftp> ls -lF |less                                <--- your input
  79.   200 PORT command successful.
  80.   150 Opening ASCII mode data connection for /bin/ls.
  81.   total 4087
  82.   -rw-rw-r--  1 ts          29359 Oct 11 04:03 0news-ts
  83.   -rw-rw-r--  1 ts          36892 Dec 31  1990 0news89.ts
  84.   [parts deleted]
  85.   -rw-rw-r--  1 ts          39143 May 31  1989 tsf2cm15.zip
  86.   -rw-rw-r--  1 ts          82531 Aug 18 11:46 tsfaqn37.zip
  87.   :q                                               <--- your input
  88.   226 Transfer complete.
  89.   local: |less remote: -lF
  90.   3638 bytes received in 70 seconds (0.051 Kbytes/s)
  91.   ftp> close                                       <--- your input
  92.   221 Goodbye.
  93.   ftp> quit                                        <--- your input
  94.   >
  95. There is also an alternative approach to reading long text files
  96. on-line if you are using a PC for your terminal emulation.  Get a
  97. screen buffer program where you can scroll the text back and forth.
  98. For example get
  99.  43298 May 30 01:07 garbo.uwasa.fi:/pc/screen/scrlit17.zip
  100.  scrlit17.zip SCROLLit, Advanced Screen ScrollBack Buffer (good)
  101. or whatever version is the current. Another scrollback buffer
  102. program is /pc/screen/buffit30.zip.
  103. --------------------------------------------------------------------
  104.