home *** CD-ROM | disk | FTP | other *** search
/ Boldly Go Collection / version40.iso / TS / 17A / CURSIVE2.ZIP / CURSIVE.DOC < prev    next >
Text File  |  1991-12-29  |  2KB  |  72 lines

  1. NAME
  2.  
  3. cursive - print text in cursive script (07/24/85, PC-DOS 12/29/91)
  4.  
  5. SYNOPSIS
  6.  
  7. cursive [-i n] [-t n] [message] [>file]
  8.                 [>>file]
  9.  
  10. DESCRIPTION
  11.  
  12. Cursive prints a line of text in a rather crude cursive script.
  13. It is intended for use mainly for the generation of decorative
  14. signatures for electronic mail.  If message text is given on the
  15. command line, that text is used.  Otherwise the text will be read
  16. from standard input up to an end of file.  The -i option sets the
  17. minimum spacing between adjacent characters.  The default is
  18. -i1.  The -t option sets the length of the trailing lines on the
  19. end of each word.  The default is -t1.
  20.  
  21. The '_' character is treated in a special way.    It may be
  22. inserted in the text anywhere you wish to lengthen a connecting
  23. line between two letters.
  24.  
  25. The ">file" argument uses standard output redirection to create
  26. or overwrite the file with name "file".  The ">>file" argument
  27. appends standard output to the file with name "file".  These
  28. are mutually exclusive.  To see the message on your display,
  29. don't include either of these arguments.
  30.  
  31. BUGS
  32.  
  33. Many ASCII characters are not defined, notably the numbers and
  34. symbols.  Punctuation is mostly available.  Some characters are
  35. rather ugly.  The author has lousy handwriting.
  36.  
  37. AUTHOR
  38.  
  39. Jan Wolter.  UUCP mail to janc@crim.eecs.umich.edu
  40.  
  41. COPYRIGHT
  42.  
  43. This program and the cursive font it generates are copyrighted by
  44. Jan Wolter.  Both may be freely used and distributed in any way
  45. whatsoever, so long as the author's name is left in the source
  46. code and documentation.
  47.  
  48. PC-DOS NOTES
  49.  
  50. Ported to the PC by Dan Johnson.  Said porting consisted of
  51. nothing more than compiling CURSIVE.C and CURSFONT.C with
  52. Microsoft C version 5.1 and linking the two object files, i.e.:
  53.  
  54.     cl cursive.c cursfont.c
  55.  
  56. No changes were necessary to get the program working under MS-DOS
  57. (3.30).
  58.  
  59. To create or overwrite a file containing your message, use ">"
  60. file redirection e.g.:
  61.  
  62.     cursive Hello world! >newfile.txt
  63.  
  64. To append your message to an existing file, use ">>" e.g.:
  65.  
  66.     cursive Hello world! >>newfile.txt
  67.  
  68. An older version of this program may be found on some BBSes.
  69. This CURSIVE.ZIP file contains files dated 11/25/87.  The old
  70. version apparently does not separate output words with whitespace;
  71. this version does.
  72.