home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / UT / UT140B.ZIP / GX.EXE / G.DOC next >
Text File  |  1992-01-27  |  9KB  |  222 lines

  1.  
  2.  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█▀▀▀▀▀▀▀▀▀▀▀▀▀█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3.  █  ▄▄▄ █  ▄▄▄▄█▐▐▐▐▐▌▐▌▌▌▌▌█▀                 ▀█▐▐▐▐▐▌▐▌▌▌▌▌█  ▄▄▄ █  ▄▄▄▄█
  4.  █  ▀▀▀ █▄▄▄▄  █▌▌▌▌▌▐▌▐▐▐▐▐        " G "        ▌▌▌▌▌▐▌▐▐▐▐▐█  ▀▀▀ █▄▄▄▄  █
  5.  █  █████▀▀▀▀  █▐▐▐▐▐▌▐▌▌▌▌▌█▄                 ▄█▐▐▐▐▐▌▐▌▌▌▌▌█  █████▀▀▀▀  █
  6.  █▄▄█████▄▄▄▄▄▄█▌▌▌▌▌▐▌▐▐▐▐▐▐▐██▄▄▄▄▄▄▄▄▄▄▄▄▄██▌▌▌▌▌▌▌▐▌▐▐▐▐▐█▄▄█████▄▄▄▄▄▄█
  7.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  8.  
  9.  
  10. "G" (short for "GOTO") is an alternative to the DOS CD command.
  11.  
  12. If you have  a lot of directories -- spread over a few drives, perhaps -- and
  13. you prefer  the familiar  DOS prompt  to a "shell" program,  you've  probably
  14. wished that DOS had a  quick  way  to jump around,  using  abbreviations  for
  15. directories.
  16.  
  17. After all, how many times can you type
  18.  
  19.   CD \TURBO\PASCAL\APPLIC\DATABASE\ACCOUNTG\PROG
  20.  
  21. before you get a little bit annoyed?
  22.  
  23. "G" lets you place  any number  of abbreviations  in a data file (G.TXT)  and
  24. then switch directories by providing the abbreviation.  For example, if you'd
  25. assigned the abbreviation "DAP" to the directory above, you would simply type
  26.  
  27.   G DAP
  28.  
  29. at the DOS prompt.
  30.  
  31.  
  32.  
  33. ┌─────────┐
  34. │  FILES  │
  35. └─────────┘
  36.  
  37.  
  38. The "G" package contains the following files:
  39.  
  40.  
  41.   FILE NAME    DESCRIPTION
  42.   ──────────   ───────────
  43.   READ.ME      A brief description of "G"
  44.   MANUAL.BAT   A batch file to call up the SEE program
  45.   G.DOC        This documentation file
  46.   SEE.EXE      A freeware file viewer/printer
  47.   G.EXE        The "G" program
  48.   G.TXT        The "G" data file -- this contains the abbreviations you'll use
  49.  
  50.  
  51.  
  52. ┌────────────────┐
  53. │  INSTALLATION  │
  54. └────────────────┘
  55.  
  56.  
  57. Installation is a two-step process:
  58.  
  59.  
  60.   1.  Copy the G.EXE program to a directory in your DOS PATH.
  61.  
  62.       If you don't know what the PATH is, refer to your DOS manual's
  63.       description of the "PATH" command.
  64.  
  65.  
  66.   2.  Customize the data file (G.TXT).
  67.  
  68.       For this, you will need a DOS text editor,  such as  Edlin  or
  69.       Edit.   You can  also use a  programmer's editor  (such as the
  70.       Turbo Pascal editor),  or a  word  processor  in  non-document
  71.       (generic DOS text) mode.
  72.  
  73.       The copy of  G.TXT  included in this package includes examples
  74.       of how we use the "G" program  here at Pinnacle Software.  You
  75.       can erase our definitions and replace them with your own.
  76.  
  77.  
  78.  
  79. ┌─────────────────┐
  80. │  THE DATA FILE  │
  81. └─────────────────┘
  82.  
  83.  
  84. The data  file  (G.TXT)  contains a  list of abbreviations  and their corres-
  85. ponding directories.   There is  no limit  to the number of abbreviations you
  86. can place in  the file.  For ease of use  you may find it  advisable  to give
  87. several different abbreviations to the same directory.
  88.  
  89. Null lines and lines that start with semi-colons are ignored.
  90.  
  91. "G"  recognizes  partial  abbreviations.  For example,  if  you  defined  the
  92. abbreviation "XYZ", "G" would understand the shortened abbreviation "XY".  It
  93. would not, however, recognize "YZ";  abbreviations are  compared  starting at
  94. the first character.
  95.  
  96. For proper processing of partial abbreviations,  make sure you insert them in
  97. alphabetic (ASCII) order.  For example:
  98.  
  99.  
  100.   A0     before A01
  101.   A01    before AGE
  102.   AGE    before BEAUTY
  103.   BEAUTY before BEAUTY2
  104.  
  105.  
  106.  
  107. ┌───────────────┐
  108. │  LIMITATIONS  │
  109. └───────────────┘
  110.  
  111.  
  112. - No spaces are allowed in the abbreviation.
  113.  
  114. - The maximum length for an abbreviation is 10 characters.
  115.  
  116. - The maximum length for a directory name is 70 characters.
  117.  
  118. - You can rename the program G.EXE to something else, but the data file
  119.   must be named G.TXT.
  120.  
  121. - "G" does not mind if your text editor pads out "white space" with the tab
  122.   character (ASCII 09).
  123.  
  124.  
  125.  
  126. ┌─────────────┐
  127. │  USING "G"  │
  128. └─────────────┘
  129.  
  130.  
  131. The format of the G command is:
  132.  
  133.  
  134.   G [abbreviation]
  135.  
  136.  
  137. For example,  if you have defined the abbreviation  "XYZ",  you would jump to
  138. the directory corresponding to that directory by typing:
  139.  
  140.  
  141.   G XYZ
  142.  
  143.  
  144. If "G" can't find an abbreviation,  it will try to find a directory with that
  145. name on the current disk.   For example, if it could not find an abbreviation
  146. named XYZ, it would then try these names:
  147.  
  148.   XYZ
  149.   \XYZ
  150.  
  151. If that doesn't work,  G will look for those directories on any hard- or RAM-
  152. disks on your system.   (To spare you having to  load a diskette,  G does not
  153. do this extended search on drives A: and B:)
  154.  
  155. If all else fails, G displays an error message.
  156.  
  157. If you  omit the abbreviation  (i.e. just type G at the DOS prompt), "G" will
  158. display the list of abbreviations, along with their equivalent directories.
  159.  
  160. See also the section entitled  "THE DATA FILE"  for a note about  how you can
  161. even abbreviate your abbreviations!
  162.  
  163.  
  164.  
  165. ┌──────────────┐
  166. │ LEGAL NOTICE └──────────────────────────────────────────────────────────────┐
  167. │                                                                             │
  168. │ For noncommercial purposes you are hereby given the right to use unmodified │
  169. │ copies of  "G"  without paying a licensing fee.  If you wish to tailor  "G" │
  170. │ to your own requirements,  order the  Turbo Pascal source code ($5).   When │
  171. │ you order the source code you also obtain license to distribute the program │
  172. │ in conjunction with any commercial product.                                 │
  173. │                                                                             │
  174. └─────────────────────────────────────────────────────────────────────────────┘
  175.  
  176.  
  177.  
  178.    █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
  179.   ██                                                                       ██
  180.   ▌█  ░ ░ ░ ░ ░ ░                                             ░ ░ ░ ░ ░ ░  █▐
  181.  ▄██   ▒ ▒ ▒ ▒ ▒      AND NOW, HERE'S A SPECIAL OFFER ...      ▒ ▒ ▒ ▒ ▒   ██▄
  182. █▌▌█  ░ ░ ░ ░ ░ ░                                             ░ ░ ░ ░ ░ ░  █▐▐█
  183. █▀██   ▒ ▒ ▒ ▒ ▒   3 Megabytes of Software for only 3 bucks!   ▒ ▒ ▒ ▒ ▒   ██▀█
  184. ▌ ▌█  ░ ░ ░ ░ ░ ░                                             ░ ░ ░ ░ ░ ░  █▐ ▐
  185. ▌ ██                                                                       ██ ▐
  186. ▌  █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█  ▐
  187. ▌                                                                             ▐
  188. ▌                                                                             ▐
  189. ▌     Get your hands on a repetory of Pinnacle's best shareware programs!     ▐
  190. ▌   Programs for communications, business, programming, education, leisure!   ▐
  191. ▌                                                                             ▐
  192. ▌   $3  [ ]  Maxi-Collection:  3 Megabytes on 3.5" 1.44 Megabyte diskettes    ▐
  193. ▌                                                                             ▐
  194. ▌   $5  [ ]  The Grab Bag:  The same software on 5.25" diskettes              ▐
  195. ▌                                                                             ▐
  196. █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█
  197. █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░█
  198. █░▒░▓░▒░▓░▒░▓░░░                                               ░░░▓░▒░▓░▒░▓░▒░█
  199. █░░▒░▒░▒░▒░▒░░░  MONEY REFUNDED IF YOU ARE NOT 100% DELIGHTED!  ░░░▒░▒░▒░▒░▒░░█
  200. █░▒░▓░▒░▓░▒░▓░░░                                               ░░░▓░▒░▓░▒░▓░▒░█
  201. █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░█
  202. █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
  203. ▌                                                                             ▐
  204. ▌                                                                             ▐
  205. ▌     If you are not delighted, simply return the diskettes for a refund!     ▐
  206. ▌                                                                             ▐
  207. ▌      Mail your order to:  Box 714 Airport Road, Swanton, Vermont 05488      ▐
  208. ▌                                                                             ▐
  209. ▌      Canadians may remit Canadian funds to:   CP386 TMR Quebec H3P 3C6      ▐
  210. ▌                                                                             ▐
  211. ▌                                                                             ▐
  212. ▌  █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█  ▐
  213. ▌ ██ DO YOU HAVE ANY COMMENTS OR QUESTIONS?   You can reach us as follows: ██ ▐
  214. ▌ ▌█                                                                       █▐ ▐
  215. █▄██ Voice Support Line (9 AM to 9 PM Eastern Time) ······· (514) 345-9578 ██▄█
  216. █▌▌█                                                                       █▐▐█
  217. ▀▀██ 24 hr/day FREE files BBS (up to 9600 baud v42bis) ···· (514) 345-8654 ██▀▀
  218.   ▌█                                                                       █▐
  219.   ██ GEnie ·········· T.CAMPBELL11       CompuServe ··········· 70154,1577 ██
  220.    █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█
  221.  
  222.