home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / PASCAL / PT01.ZIP / ECHOARG.MAN < prev    next >
Encoding:
Text File  |  1983-09-07  |  556 b   |  23 lines

  1. .im man.im
  2. .NM echoarg echo arguments to output
  3. .SY echoarg [argument ...]
  4. .FU
  5. .ital echoarg
  6. copies its command line arguments to its output as a line of text with
  7. one space between each argument.  If there are no arguments, no
  8. output is produced.
  9.  
  10. It is mostly useful to get a line containing all files that match
  11. a given pattern into a file.
  12. .EG
  13. To see if your system is alive:
  14. .Q1
  15. echoarg hello world!
  16. .ital hello world!
  17. .Q2
  18. To get a sorted list of files that match a pattern:
  19. .Q1
  20. echoarg *.fmt }temp1
  21. translit " " \@n {temp1
  22. .Q2
  23.