Artifact d8239ae92fda4f07f657f51fff388f6dd86676d5a4fb2d6677d05c8038ab8894:
- File
psl-1983/3-1/help/inspect.doc
— part of check-in
[eb17ceb7f6]
at
2020-04-21 19:40:01
on branch master
— Add Reduce 3.0 to the historical section of the archive, and some more
files relating to version sof PSL from the early 1980s. Thanks are due to
Paul McJones and Nelson Beebe for these, as well as to all the original
authors.git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/historical@5328 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 971) [annotate] [blame] [check-ins using] [more...]
- File
psl-1983/help/inspect.hlp
— part of check-in
[eb17ceb7f6]
at
2020-04-21 19:40:01
on branch master
— Add Reduce 3.0 to the historical section of the archive, and some more
files relating to version sof PSL from the early 1980s. Thanks are due to
Paul McJones and Nelson Beebe for these, as well as to all the original
authors.git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/historical@5328 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 971) [annotate] [blame] [check-ins using]
INSPECT M.L. Griss, Monday, 31 May 1982 ------- This is a simple utility to scan the contents of a source file to tell what functions are defined in it. It will be embellished slightly to permit the on-line querying of certain attributes of files. INSPECT reads one or more files, printing and collecting information on defined functions. Usage: LOAD INSPECT; INSPECT "file-name"; % Scans the file, and prints proc names. % It also builds the lists ProcedureList!* % FileList!* and ProcFileList!* % File-Name can IN other files On the Fly printing is controlled by !*PrintInspect, default is T. Other lists built include FileList!* and ProcFileList!*, which is a list of (procedure . filename) for multi-file processing. For more complete process, do: LOAD Inspect; Off PrintInspect; InspectOut(); % Later will get a file Name IN ....; IN ...; InspectEnd; Now use Gsort etc. to process the lists