home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / historic / v941.tgz / icon.v941src.tar / icon.v941src / ipl / progs / url2link.icn < prev    next >
Text File  |  2000-07-29  |  682b  |  27 lines

  1. ############################################################################
  2. #
  3. #    File:     url2link.icn
  4. #
  5. #    Subject:  Program to convert bookmarked URLs to link references
  6. #
  7. #    Author:   Ralph E. Griswold
  8. #
  9. #    Date:     October 19, 1998
  10. #
  11. ############################################################################
  12. #
  13. #  This file is in the public domain.
  14. #
  15. ############################################################################
  16. #
  17. #  This program reads URLs from standard input and writes HTML links to
  18. #  standard output.
  19. #
  20. ############################################################################
  21.  
  22. procedure main()
  23.  
  24.    while write("<A HREF=\"", read(), "\"></A><BR>")
  25.  
  26. end
  27.