-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex26.2
966 lines (932 loc) · 42 KB
/
index26.2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
Subject: v26INF2: List of sources in the archives
Newsgroups: comp.sources.unix
Approved: [email protected]
Submitted-by: [email protected] (Paul Vixie)
Posting-number: Volume 26, Info 2
Archive-name: index26.2
This is the second introductory message about comp.sources.unix.
The first described how to submit sources to comp.sources.unix, where the
archive sites are, and how to contact them. This one lists all the
sources that have been published in this newsgroup.
We are considering a new archive layout and index; we expect to implement
it by the end of Volume 26 (this one). See the third introductory message
(v26INF3) for more "futures".
-Paul Vixie
-Mike Stump
-Nick Lai
--------------------
Subject: Volume 25 (Ends April 10, 1992)
index25.1 Introduction to comp.sources.unix
index25.2 List of sources in the archives
byte-benchmarks3.1 (4 parts) BYTE Benchmarks, V3.1
chop extract selected fields or columns of text lines
classify compare groups of files and classify them
crashme stress-test your U**X kernel
ease3.5 (6 parts) high-level sendmail.cf language,
ethertop Monitor network utilization in terms of ``busiest hosts''
fido a new watchdog for users and machines
finger (7 parts) Phil's Finger Program
fromwho yet another replacement for from(1)
fsp (3 parts) A real-time, multithreaded Internet archive server
getethers scan an ethernet and learn hostname/ethernet pairings
hexpert a binary file editor for SysV
hostcvt convert /etc/hosts files into DNS zone files
hostcvt.pch1 patch 1 for hostcvt
ile an input line editor
ils interactive "ls" and browser
indir.pch2.4 from 2.3 to 2.4
ispin (15 parts) Indianapolis Standard Printer I'face / Net printers
kit (4 parts) the ultimate mailing kit,
letters game to improve typing skills
listserv5.31 (6 parts) mailing list management system,
lsof a successor to fstat and ofiles
macps utilities to help print Apple "LaserPrep" files
mrandom A random number generator with persistent state
msgd sends a one line message to another user or users
mtools2 (3 parts) tools to manipulate MSDOS filesystems, V2.0
mtools2-xenixpatch xenix patches for mtools2
newmail utility to check for new mail
npasswd (3 parts) replacement for passwd(1)
ofiles.pch patch to ofiles -- v18i057
ofiles2 a portable version of ofiles (show list of open files)
pathalias10.pch patch to pathalias V10 from Volume 22
permissions (3 parts) access control library for YP/NIS environments
policy (3 parts) tools for providing interactive timeshare policies
posix-date implementation of posix date(1) and strftime(3)
psroff3.0 (3 patches)
pty4 (9 parts) Generalized interface to pseudo-tty devices
rcs-5.6 (11 parts) Revision Control System, V5.6
rcsify put groups of files under RCS control
rlogin-hack Enhanced BSD Rlogin to support environment passing
roff simple text formatter
screen3 (8 parts) multiple windows on an ASCII terminal
setd setd V1.7 -- Set Directory and Mark Utilities
settime Set system time from atomic clock
smail-deliver.pch patches to smail 2.5 for Xenix and/or Deliver
sockdemo demo for berkeley socket interface
tcsh-6.01 (18 parts) a csh replacement with lots of extra goodies
tourney runs an NCAA B-Ball tournament
trash (8 parts) simulate process execution in MIPS RISC/os 4.52
trn (13 parts) threaded newsreader based on rn 4.4
utmp utility to repair broken /etc/utmp files
zip (7 parts) file compression/archive tool
--------------------
Subject: Volume 24 (Ends October 10, 1991)
index24.1 Introduction to comp.sources.unix
index24.2 List of sources in the archives
chemtab (3 parts, 2 patches) Manipulate data on the chemical elements
cvs1.2upgrade (2 parts) CVS upgrade for RCS5.5 support
elm2.3patches (11 parts) Elm mail system, release 2.3 (patches)
faxpax (5 parts) Email fax-sending package
gnudiff1.15 (8 parts) GNU Diff, version 1.15
hp Reverse polish notation calculator
jlook (5 parts) Journal lookup-program with database
lb Simple load-balancing program
mkid2 (7 parts) Program identifier database tools
namei A program to trace through symlinks
policy Scripts for setting site policies
psroff3.0 (19 parts, 4 patches) psroff, Troff to PostScript filter
pucc-install (7 parts) Purdue software product installation system
pucc-lib (2 parts) Library for Purdue University Computing Center tools
pucc-mk (6 parts) Purdue shell turbo charger and manual installer
pucc-rmprog Purdue tool to remove old programs
pucc-turnin (2 parts) Purdue tool for students to turn in work
qterm5.0 (2 parts) Qterm5.0 -- Query terminal for its type
rcs (12 parts, 1 patch) GNU RCS V5.5 source control system
sysVr4386slip (4 parts) SystemVr4/386 SLIP driver and utilities
tarx Tool to salvage data from damaged tar tapes
untic Decompile terminfo terminal descriptions
watch Repeatedly execute a program under curses(3)
yabbawhap (4 parts) Public-domain replacement for compress programs
--------------------
Subject: Volume 23 (Ends February 20, 1991)
index23.1 Introduction to comp.sources.unix
index23.2 List of sources in the archive
deliver2.0pch (10 parts) Deliver 2.0 patches
newsxd (3 parts) Netnews transmission daemon
transfig (6 parts) Tool for creating TeX documents with portable graphics
sc6.8 (6 parts) The SC Spreadsheet, release 6.8
awf nroff -man/-ms clone written in (old) awk
vixie-cron (3 parts) A cron/crontab replacement
pty (6 parts) Run a program under a pty session
flex2.3 (10 parts) Flex, a fast lex replacement
sps2 (4 parts) SPS, a PS replacement
lome (9 parts) Line oriented macro processor
trn (14 parts, 1 patch) "Threaded" RN at patchlevel 1
cio Frontend to RCS ci/co
mlpd Feed multiple printers from one BSD lpr queue
xmodem3.9 (3 parts) Xmodem file transfer program, revision3.9, Part03/03
abc (25 parts, 3 patches) ABC interactive programming environment
--------------------
Subject: Volume 22 (Ends July 13, 1990)
index22.1 Introduction to comp.sources.unix
index22.2 List of sources in the archive
auth-utils (3 parts) Utilities for auth2.1 server
auth2.1 (2 parts) RFC931 TCP Authentication serer
byte-benchmarks (5 parts) Byte Unix benchmarks
checknr The BSD checknr program -- "lint for ?roff documents"
cops.pch System security analysis tool
cvs-berliner (7 parts; 1 patch) part07 Brian Berliner's concurrent RCS system
cvs3.0 (3 parts) Concurrent RCS version system, release 3.0
debug_malloc (2 parts) Debugging malloc() library
elm2.3/part26 (26 parts) ELM mail system, release 2.3
et (3 parts; 1 patch) Error table compiler and library
gawk2.11 (16 parts, 1 patch) GNU AWK, version 2.11
indir.pch Patch to indir -- safely execute (set[ug]id) scripts
mmv.pch CRITICAL patch to MMV
multitee2.0 Send multiple inputs to multiple outputs
nn/postnote NN postings, mail problems
nn6.4 (44 parts, 4 patches) NN Newsreader, release 6.4
pathalias10 (3 parts) Pathalias, version 10
p2cpatches (2 parts) Update kit for p2c Pascal to C translator
queuer (3 parts) Multi-system program queueing package
tpipe A "tee" with multiple outputs
undel2/part03 (3 parts, 1 patch) MIT Athena delete/undelete programs, release 2
--------------------
Subject: Volume 21 (Ends April 30, 1990)
index21.1 Introduction to comp.sources.unix
index21.2 List of sources in the arvhie
amd (13 parts) An Automounter for NFS systems
berkeley_yacc (5 parts) Public domain Berkeley YACC
coda (3 parts) File distribution alternative to rdist
cops (5 parts) System ecurity analysis tool
exebyte_toc Table of Contents for Exebyte 8mm tapes
filterfile Apply a filter to a file, safely
indir Safe way to run setuid shell scripts
ipl (14 parts) 2D graphic system with table beautifier
mmv (2 parts) Safely rename wildcarded files
p2c (32 parts, 1 patch) Pascal to C translator
rayshade (8 parts, 3 patches) A ray tracing program
rh2 (2 parts) Find files using C expressions
ro (3 parts) A text formatter with some nroff-like capabilities
snefru (4 parts) Snefru hash and netnews validation programs
squeeze1.711 A file compression program
strsed (3 parts) String function to do sed(1)/tr(1) manipulations
--------------------
Subject: Volume 20 (Ends February 6, 1990)
index20.1 Introduction to comp.sources.unix
index20.2 List of sources in the archive
posix.h-tester POSIX 1003.1 #include file tester
c-gc (2 parts) C memory garbage collector
reldb (3 parts) Relational database tools
rc.user Allow users to automatically run scripts at boot time
metrics (14 parts) Tools for generating software metrics
posix.h-tester POSIX 1003.1 #include file tester, Patch1
deliver2.0 (4 parts; patches) Deliver, flexible email delivery system
xxalloc Multi-dimension dynamic array manipulation package
reactivekbd (4 parts) Command-line editor with predictions
psroff (6 parts) Troff upgrade for PostScript, DiTroff compat...
cproto Generate C function prototypes from C source
gperf (5 parts) Perfect hash generator for sets of key words
curses-clock Curses-based digital clock
process-cwd Print current directory of processes (on BSD)
plum-benchmarks Plum-Hall benchmarks for timing common C operations
plum-ansi-macros Plum-Hall X3J11 macro explainer
opcom Operator interface with limited privileges
fpc (6 parts) Portable compiler of the FP language
index-db (2 parts) Maintain multiple databases of textual data
etherlib (3 parts) User-level interface to Ethernet
epf (6 parts) LQ-1500 drivers for nroff
pcomm1.2 (8 parts; pathces) Pcomm telecommunication package
pegboard An electronic office sign-in/signout pegboard
memlintok A package to remove common lint/malloc complaints
pt Display process family tree
inserts Do insertions into a document
multi-include Modify files to help remove multiple #include's
keybind Rebind the console keyboard in Xenix or System Vr3.2.1+
lcomp Statement count profiling
keybind.pch Rebind the console keyboard in Xenix or System Vr3.2.1+
perl3.0 (24 parts) Perl, a language with features of C/sed/awk...
--------------------
Subject: Volume 19 (Ends June 30, 1989)
index19.1 Introduction to comp.sources.unix
index19.2 List of sources in the archive
ash (8 parts, 1 patch) A reimplementation of the System V shell
atty (4 parts) A command-line editor (for BSD)
shape (33 parts) A software configuration management system
fbm (8 parts) FBM, image manipulation library
flex2 (7 parts) Flex, a fast LEX replacement
nn (15 parts, 1 patch) NN, a Usenet news reader
cnews2 (19 parts, 1 patch) Cnews production release
rkive (4 parts) Usenet sources archiver
backup Save files that have changed in the last little while
--------------------
Subject: Volume 18 (Ends May 30, 1989)
april-fool Absolutely-portable remote interchange library 1
biff-comsat Remote biff/comsat
btoas Btoa v5.2 -- binary/ascii packer with repair features
changebar Generate changebars in ?roff docs using patch
ctrl Transform symbolic to real escape sequences
des-no-usa (2 parts) DES code
diskhog2 A diskquota-system for non-BSD sites
elm2.2 (24 parts) Elm mail system, release 2.2
fft General Fast Fourier Transform package
fnet (5 parts) Fido/Usenet gateway
fstat2 Show file/open status
geneal (4 parts) Geneal, a genealogy browsing program
gl_plot (7 parts) GL Graphics Library for AT-clone Unix
gnugrep1.3.pch GNU Grep 1.2->1.3 patch kit
hat-n-coat (2 parts) Hat/Coat, dependency analysis tools
headers Selectively retrieve news article headers
indent (3 parts) Indent, C reformatting program
localtime3 (7 parts) Table-driven ctime/time/localtime/date package
malloc-trace Malloc package, with tracing
mcqueer-lib Library for hat/coat and others
mq Display mail queue and "from" output
mtvraytrace (3 parts) A ray-tracing package
mush6.4 (19 parts) Mail user's shell version 6.4
ofiles Find who has files open on BSD, Sun, etc.
ofiles.new REVISED ofiles, doesn't need Sun source
pwdiff Tool to aide in merging password files
rename-files Rename multiple files
rh Find files using C-style expressions
rmtlib2 Remote tape library
ru2 Rwho with a users(1)-style output
sc6.1 (4 parts) SC spreadsheet, version 6.1
sls SLS, a program like "ls -l" with more control
spin (2 parts) Simple programmable interface kit
superserver "Super" network server for easy service-building
treepar (3 parts) Tree-structured data placer/router/plotter
undel (6 parts) MIT Athena delete/undelete programs
vtree Visual directory browser
--------------------
Subject: Volume 17 (Ends March 1, 1989)
mgr (61 parts, 1 patch) MGR, Bellcore window manager
zoo2 (10 parts) Zoo archive program
pax (6 parts) Usenix/IEEE POSIX replacement for TAR and CPIO
mod-copyright Renunciation of Moderator's Copyright
pps PostScript pretty-printers for common languages
morsecode ASCII->Morse Code filter
screen2 (2 parts) Screen, multiple windows on a CRT
contest-prog (3 parts) ACM-style programming contest programs
ease2 (3 parts) Ease2.0, a language for sendmail.cf files
cscript Record interactive session (using pipes)
printf A printf program
hill Encrypt using Hill cipher
prologtags Create tags file for Prolog
malias Expand .mailrc aliases
e2 (3 parts) E, friendlier front-end to vi
gnugrep (5 parts) Gnu E?GREP (it's fast)
--------------------
Subject: Volume 16 (Ends January 17, 1989)
index16.1 Introduction to comp.sources.unix
index16.2 List of sources in the archives
conf2 (4 parts) Multi-user conference system
index16.3 Corrections to first two INFO postings
colm A columnation program
deliver (3 parts) Mail delivery program
dist2 (7 parts, 2 patches) Larry Wall's Configure generator, etc.
fep (5 parts) Front end editor program
fido Watchdog for users and machines
hgrep Highlighting grep filter
ida2 (8 parts) IDA Sendmail kit
identlist List identifiers and declarations for C sources
less5 (4 parts) Less, a pager that's more than more
lint-proto.pch Turn 4.2BSD lint into a prototype generator
lumberjack Logfile monitor tool for Suns
month8.7 (6 parts) A visual calendar and appointment system
narc Archive net sources groups
obvious-pw Tell if a password is "obvious"
pcomm2 (8 parts) Modem communications package
plp (16 parts) Public lineprinter spooler package
psterm (4 parts) Terminal emulator for NeWS window system
sao (49 parts, 2 patches) Smithsonian Astronomical Observatory
spiff (4 parts) Spiff, find approximate differences in files
texi2roff Convert GNU Texinfo files to nroff/troff files
uniqbib Remove duplicates from a "bib" database
xfmt A simple formatter
--------------------
Subject: Volume 15 (Ends August 12, 1988)
index15.1 Introduction to comp.sources.unix
index15.2 List of sources in the archives
abcd Automatic Backup Copy Daemon
arc5.21 (5 parts) ARC (PC compression program), v5.21
ck Check mailboxes for new mail
cshar (3 parts, 3 patches) Tools to create and unpack shell archives
cu-shell A "shell" for CU, Kermit, etc.
cu-shell.note Ignore the copyright on the cu-shell posting
ddd Fast, multi-process dd(1) clone
delta-times Delta time routines for alarm(2) manipulation
dis6502 6502 disassembler
dis88 (2 parts) Symbolic disassembler for PC/IX
dvipage (4 parts) Sun previewer for TeX DVI files
emitc Routine to process ctime(3) output
gbench (2 parts) Graphics benchmark toolkit for X
hash8 Hash long identifiers into unique short ones
ien116 Updated IEN-116 namesever
inc-elim Filter to eliminate file inclusion commands
index15.3 Update on "killer" and error in "stevie" subject line
ioccc/part07 (7 parts) International Obfuscated C Code Contest
lp-onionskin Wrapper for System V lp, bug work-around
lwf ASCII to PostScript filter
mcat.new A cat(1) for mmap'able devices
monthtool (2 parts) Monthly apointment calendar, for Suns
moontool The moon on a Sun
mp Mail pretty printer v1.4 (aka mail->postscript)
mush6.2.pch Upgrade kit for Mush release 6.2
mush6.3kit (4 parts) Mush (mail user's shell) upgrade kit, version 6.3
net-notify Network message system, sort of like wall
newgetty Alternate getty front-end, with speed detection
nroffgraphics (2 parts) Tools for nroff graphics on dot-matrix printers
pages Page accounting aide for SysVrel3.1
perl2 (15 parts) Perl, version 2
ps.sun.pch Module to make postscript interpreter work under Suntools
rmtlib Remote magtape library for BSD
rot Rotate text
ru A users(1)-style rwho
siod Scheme in one defun
stevie (2 parts, 1 patch)i Stevie, an "aspiring" VI clone for Unix...
surun Run commands as another (or super) user
touchup (6 parts, 2 patches) A bitmap editor for Suns
tpscript (5 parts) Ditroff to PostScript translator
twm (4 parts) A window manager for X
ultrix-modem UUCP/CU access on one modem
unfsd (2 parts) User-level NFS server
uumailclean Clean-up backlogged UUCP mail
vn.april.pch (2 parts) VN, April, 1988, upgrade kit
vtree Visual display of directory tree
whichtape Tools to help find files on backup tapes
window-srch Windowing search (not unlike context grep)
xmodem3.6 (5 parts) Xmodem release 3.6
yp-quote Building custom Yellow Page Maps
--------------------
Subject: Volume 14 (Ends May 20, 1988)
index14.1 Introduction to comp.sources.unix
index14.2 List of sources in the archives
ioccc (5 parts) International Obfuscated C Code Contest
vplot Device-independant graphics system, with drivers
mush6.0 (14 parts) Mail User's Shell
nntp1.5 (9 parts) Network News Transfer Protocol, version 1.5
vn.nntp.pch VN NNTP conversion kit
mush6.0/patch1 Mush updates for SystemV, etc., Patch1
jove4.9 (21 parts) Jove, an emacs variant, version 4.9
flex (5 parts) Flex, a lex replacement
flex/patch1 Flex, a lex replacement, Patch1
3bconnect 3B2 Ethernet Connection and File Transfer Utility
rast Sun rasterfile I/O library
splay-tree Splay tree library
bsd-dyna-link Dynamic linking package for BSD
cdecl2 (2 parts) New version of Cdecl, parse C declarations
shellforms (2 parts) Forms interface for shell scripts
sharedmem (4 parts) Shared memory emulation for 4.2BSD
calc A trig/multi-base calculator
pcomm (6 parts) Dial out and terminal emulator
pcomm/patch1 Dial out and terminal emulator, Patch1
--------------------
Subject: Volume 13 (Ends early March, 1988)
4.3autobaud Baud rate detection for 4.3BSD
atl List jobs in at queue for 4.3BSD
attpc.renice Change process priority on ATT PC
autoadd Program to add users to system
backups Tools to help automate backups
bool-eval Boolean expression array evaluator
bpatch.2 Binary file editor
bpatch2 Binary patch program, ported to 80286 etc.
budpak Utilities to monitor usage on system
casette-lbl Cassette label formatting program
cfc New version of .cf compiler
check Check for mistakes in C programs
derez (2 parts) Derez, remove stale files from system
e Friendly front-end to vi
ease.pch Patches to EASE sendmail.cf language
file (2 parts) Replacement for the file(1) command
funcproglang (2 parts) Functional programming language
iface (2 parts) Generic user interface kit
korner Convert (some) csh scripts to ksh scripts
labels Program to make mailing labels
lit Lit, a "better" echo
little-st2 (5 parts) New release of little smalltalk
m4 (2 parts) Public domaind M4 macro processor
mcc Merge C code with compiler error messages
measures Brute force measurement selection
modemcap Hardware-independant modem routines
nroff-driver Nroff driver table utility
pas2c.pch Patches for Pascal-to-C translator
perl (10 parts+sample) Perl, a "replacement" for awk and sed
perl (2 parts) Perl patches 1 through 10
printacct Print BSD accounting file
process-uucp Tools for pathalias with MMDF
pwget Programs to retrieve /etc/passwd info
ratfor Public domain RATFOR in C
rf Rolodex-like filing system
rolodex (4 parts) Screen-oriented rolodex program
rpc3.9 (15 parts) Sun RPC, release 3.9
rstat Remote statistics server
sbbs (2 parts) A BBS written in /bin/sh
sc5.1 (3 parts) SC spreadsheet program, version 5.1
sets Perform "set" operations on command line arguments
slice Split file based on patterns or line numbers
starchart (2 parts) Starchart package patches
ups BSD File delivery programs
vn.jan.88 (5 parts) VN newsreader, 1/88 version
vt220fontedit Font edit program for VT220 terminals
with Resource allocation program
xmodem (3 parts) Full featured xmodem program, v3.4
--------------------
Subject: Volume 12 (Ends February, 1988)
afio (2 parts) Manipulate CPIO-format archive and files
cake (9 parts) Cake, a make replacement
cnews (14 parts) C News alpha release
crc.pch CRC Graphics Package Patch#1
fuser Who's using that file? (For Unix-PC)
hershtools (5 parts) Hershey font manipulation tools and data
index12.1 Introduction to comp.sources.unix
index12.2 List of sources in the archives
ln03-plot New version of LN03 plot(3) package
ops5 (5 parts) OPS5 in Common Lisp
musbus5.2 (3 parts) Monash benchmark update
pathalias9 (2 parts) Pathalias, version 9
pdtar (3 parts) Public domain TAR
postscript (18 parts) A PostScript interpreter
qterm.alt Query terminal for its type
starcharts (7 parts) StarChart program and Yale star data
strings.coff Find printable strings in COFF files
vmail (3 parts) vmail - screen-based mail handler
zmodem (3 parts) Zmodem file transfer programs
--------------------
Subject: Volume 11 (August 11, 1987 to October 6, 1987)
3bnet (2 parts) 3Bnet utilities and printer spooler
avl-subs AVL Tree subroutines
bsd.2.10.note BSD2.10 available from Usenix
bsmtp Batch SMTP program
bundle Buffered copy to/from physical devices
comobj.pch Patch for Common objects sources
cpmod Copy modes/ownerships/times
getty-enable Getty on/off programs for 4.[23] BSD
graphedit (2 parts) Graphcs editor for Suns
hum.pch Hum concordance package update kit
id (3 parts) C cross-reference database system
inline (4 parts) Inline code expander for C
inline/patch1 Inline code expander for C, Patch1
jove.pch (4 parts) Jove upgrade kit
jove.pch/patch1 Missing file from Jove update, Patch1
lemming (2 parts) Update kit for lemming editor
less3 (3 parts) The 'less' pager
little-st (3 parts) Little Smalltalk interpreter
musbus (4 parts) MUSBUS 5.0 -- Monash University Benchmark
monthtool Sunview visual calendar
mtools (2 parts) MS-DOS disk tools for Unix
mush5.7 (12 parts) Mail user's shell
netdata Transfer data (and mail) between SYSV and CMS
number Arabic numerals to multi-lingual natural language
psfig (5 parts) Including PostScript figures in ditroff
qsubst A query-replace program
reader.poll Poll on copyrights
saver Small SUN screen-saver
sc4.1 (3 parts) Spread sheet program, sc 4.1
se.pch.2 Second update for 'SE' editor
smail3 (3 parts) Smail, UUCP domain mailer
syslog Development version of syslog(3), for ATT, too
syslog.sysv SystemV version of syslog
tcsh.4.3 (2 parts) Tcsh for 4.3 CSH
tcsh (6 parts) New version of T-shell
tek2ps Tektronix4014 to PostScript filter
templates (6 parts) Template-mode for GNU Emacs
test.el (3 parts) Test system for GNU Emacs
vitals Word counts, checksums, etc.
watcher (2 parts) Watcher system monitor program
zoo (7 parts) File archiver programe
--------------------
Subject: Volume 10 (June 17, 1987 to August 10, 1987)
agef Show disk usage by file age
cbar Another changebar program
cbw (11 parts, 1 patch) Crypt Breaker's Workbench
cfc "Compile" sendmail.cf files into EASE language
comobj.lisp (13 parts) Common Objects, Common Loops, Common Lisp
complex-lib Complex arithmetic library
copytape Copytape, a magtape xerox (tm) machine
copytape2 NEW version of magtape copy program
crc_plot (6 parts) CRC Plotting Package
derez Find and remove stale files from a disk
des DES encryption routines and a login front-end
dev.fd A /dev/fd device driver for 4.3 and NFS systems
ease (4 parts) Ease translator repost
fastgrep (3 parts) Reposting of world's fastest grep
dir-lib.pch Patch to Volume9 gwyn-dir-lib
hum (3 parts) Bull Tuthill's "hum" text concordance package
ida (7 parts) the IDA sendmail kit
ien116-server IEN116 Nameserver
ifp (7 parts) Interpreted Functional Programming lanuage
lc An "ls" program
lemming (4 parts) A graphics editor
logo (6 parts) Logo interpreter for Unix
magtapetools (2 parts) Magtape handling package
mx-macros REPOST of Troff macros for "ACM Transactions"
notes-mod.pch Patches for NOTESFILES for moderated groups
nrchbar A "changebar" interface for *roff
ptoc (12 parts) Pascal to C translator
qterm Query terminal for its type
regexp.pch Bug-fix for regexp() library
screen (2 parts) BSD multi-screen manager
sps (3 parts) SPS for BSD, Ultrix1.2, Sun3.x, NFS
sxt-sh-jobs (2 parts) Diffs for SystemV /bin/sh job control with sxt's
top_s375 (2 parts) Top users display, 2.1 with Symmetric changes
tr2latex Translate troff to LaTex
x10r4.sunpch (3 parts) X10R4 patches for Sun3/110C
--------------------
Subject: Volume 9 (March 3, 1987 to June 16, 1987 <great renaming>)
assem2 (2 parts) Generic assembler for micro's
bitstring "Bitstring" package
elm2 (19 parts) ELM Mail System
fastgrep (2 parts) Fastest grep around
gwyn-dir-lib New directory-access library (SEE PATCH IN VOLUME 10)
index9.1 Introduction to mod.sources
index9.2 Index of mod.sources archives
index9.4 Change in archive sites, recent errors
localtime Public Domain (Table Driven) ``localtime'' patch
month (2 parts) REPOST of Visual calendar program
mx-macros Troff macros for "ACM Transactions"
old.bad.code Previous "obfuscated C" winners
printf Printf(1), for shell scripts
teco (4 parts) A TECO text editor
uemacs3.8b (14 parts) MicroEMACS, version 3.8b
uumail.pch UUmail 4.X patch
xscreen (2 parts) Screensaver for X window system
xterm (7 parts) Terminal emulator for X window system
zmac (2 parts) Z80 macro cross-assembler
--------------------
Subject: Volume 8 (January 26, 1987 to March 3, 1987)
ansitape (2 parts) ANSI tape program
cut+paste Public-domain implementations of cut(1) and paste(1)
dca2troff Convert IBM DCA documents to troff input
display Execute command repeatedly, display output
ease (4 parts) Ease, a language for writing sendmail.cf files
fixcpio Repair damaged "cpio -c" archives
foogol A (vax) compiler for a tiny ALGOL-like language
getpw Public-domain getpw*(3) routines
graph+ (3 parts) A Graph Plotting Program
her2vfont Hershey fonts to 'vfont' rasterizer
hier Directory hiearchy scanner
index.1 Accessing the archives
index.2 Index of volumes one to seven
jove (13 parts) The JOVE text editor
kurses A program to call curses(3) functions
mcp (8 parts) Account creation/manipulation program
micrognu (11 parts) A Micro-Emacs variant that resembles GNU Emacs
multi_feed.c++ Simultaneous multi-site news feeder in C++
multivol.pch Multivol, Patch #1 (see Volume 7)
pd-localtime (3 parts) Public Domain (Table Driven) ``localtime''
phoon Phase of the moon, date routines
prep (2 parts) A pre-processor for FORTRAN source
psfig-tex (3 parts) Including PostScript/Mac figures in TeX documents
qterm Query terminal for its type
se (7 parts + 1 Patch) Georgia Tech 'se' screen editor
shrink_names Shrink VeryLong+File.names to shorter names
smail2 (5 parts) Smail (UUCP domain mailer), release 2.3
soelim A .so/.nx/.PS filter for *roff files
sp (2 parts) Soundex spelling-checker
tabs A tab/space conversion program
textool2 (2 parts) A collection of tools for TeX users
trmatch Syntax-checker for *roff
uk-1.4.pch Patch for UK-1.4 mail configuration
unaxcess2 (4 parts) UNaXcess Conferencing, version 1.00.02
uucp.x25pad UUCP X.25 'f' protocol and PAD dialer
uumail4 (4 parts) Uumail release 4.2
uutty Bidirectional getty/login for SystemV
vn (3 parts) The VN news reader
vtrm (2 parts) A Unix/PC virtual terminal package
--------------------
Subject: Volume 7 (Ends January 20, 1987)
2.11news (20 parts) 2.11 News Release
4.3cpp.patch #elif patch to 4.3BSD cpp
aaakeys Ann Arbor XL key uploader
append Allow additions to 'protected' directories
basic (6 parts) A BASIC Interpreter
bpatch Binary (file) patcher/viewer
cmstape Read and write IBM VM/SP CMS dump tapes
csh.patch Two CSH patches
des Purported DES program in C
determcap Decomposing termcaps
dirstack.csh CSH tools for directory stacks
elm_update (3 parts) ELM Update Kit
forktest Find security holes in shell-escapes
getmetrics PostScript program to generate .afm files
getoptprog Getopt program for scripts
hostup An alternative to the BSD ruptime command
idle.users A simple BSD idle-users daemon
image (5 parts) Image manipulation routines in C++
index.1 Index and Archives
index.2 Complete Listing of Mod.Sources Archive
index.3 Archive access and listing
index.4 Index for Volume 7 and other info
less3 (3 parts) New release of LESS
make Public-domain MAKE
micro.asm (2 parts) Generic assembler for micros
msdos_mk.patch Patch to msdos_mk for Microsoft C
multivol (2 parts) Multivol V1.00 - multivolume backup utility
nag (2 parts) Nag reminder service
new_archives Additional UUCP Access to Mod.Sources
patch2 (3 parts) Release 2.0 of patch
paths.mk Makefile to build UUCP paths
pdtar Public-domain TAR program
read-vms-backs Read VMS backup tapes
regex Ed(1)/regex(3)-compatible reg. exp. package
remtape Remote magtape library for 4.3BSD
rvi (4 parts) Vi front-end for remote editing
safe Limit a program's execution time
smail (2 parts) Domain mailer and rmail replacement
sop A .so filter for n/t/*roff files
sunmailwatch A mail watcher for SUNwindows
tar_aids Tools to read damaged tar tapes (tar_aids)
texdvi2tty TeX DVI driver for TTY's, etc.
textools (2 parts) A collection of tools for TeX users
tinytcp A tiny set of TCP routines (tinytcp)
top2 (2 parts) Top users display for 4.2BSD, Version 2.0
tput Public-domain tput(1) program
tput2 Public-domain TPUT (corrected implementation)
untamo2 Log out idle users
untamo3 Log out idle users (untamo revised)
uucp+nuz.tulz Erik Fair's UUCP & Usenet toolbox
uuencode Uuencode and uudecode
vms_tools (2 parts) Unix-like tools for VMS systems
vttest (2 parts) Test VT100 Features
xlisp.patch Patch to Xlisp1.6 for Pyramid machines
xmodem (2 parts) Full-featured XMODEM
yacc.notes: Tools to restart YACC parses
yacchacks Tools to restart YACC parses
yearlength Compute length of any year
--------------------
Subject: Volume 6 (Ends mid-July, 1986)
intro Introduction to mod.sources
untamo Untamo, another idle daemon
calls.new New calls; shows function call flow
vol Create volume headers for tar
makekits2 Makekits revisited
maildigest Mail digest utilities
gr_scripts Shell Scripts for game regulator
pacman.p Apollo Pacman-like game
datediffs patches for date to use elsie!ado's localtime
getpaths Tools for analyzing netnews paths
sysVtalkA A talk for system V.2
sysVtalkB A talk for System V
texdvi2lj (3 Parts) TeX DVI driver for LaserJet+
halign Halign - line up columns
context Context - generalized context printer
pacman.p.h Missing files from Apollo pacman
less.patch Patches for more/less interoperability
qterm Query Terminal for terminal type
printfck2 New printfck and manpage
context.1 Manual page for context program
compress.xenix Xenix patches to compress4.0
fmtr.patch Patches to fmtr
unrm.rm Rm and unrm programs
elm (14 Parts) Elm mail system
cvs (2 Parts) CVS, an RCS fonrt-end
ditrev Page reverser for ditroff
stringlib X3J11/SVID/4BSD/etc string library
cpp.patch Patches to 4.2BSD cpp for #elif, // comments
help (2 Parts) Help programs
glob 'Globbing' library routine
cdecl English<->C translator for C declarations
sh.ulimit Add ksh-style 'ulimit' to 4.2BSD /bin/sh
bsearchstr Binary search for strings in a file
yyref Cross-reference for Yacc
newbatchA Usenet news batcher control program
newbatchB Usenet news batcher control program
malloc A "smarter" malloc
S3uuque Uuque for System III/V in C
lbl Lbl preprocessor for [nt*]roff
malloc.mk Missing makefile for "malloc" posting
elm/Patches1 Elm fixes for BSD, et. al.
Misc.Patches1 Changes to calls, compress, ditrev, getpaths, nbatcher
vt100tool (10 Parts) VT100TOOL for Sun's
settz.patch Updates to "settz" data files
uEmacs3.7 (12 Parts) MicroEmacs, Version 3.7
bsd.ps.patch Speed, etc., patches for BSD ps
watch A multiple "tail -f" program
reminders A Personal Reminder system
sysVdial (3 Parts) System V generic dial routines
rpc2 (11 Parts) Sun RPC Source
malloc.patch Bug fix for "smarter malloc"
newscnt Count unread news articles
less2 (2 Parts) New version of less
msdos_mk A Make for MS-DOS and VAX/VMS
att_which A "which" for non-BSD systems
lj_filter Filter for HP Laserjet
xlisp1.6 (6 Parts) Xlisp version 1.6
--------------------
Subject: Volume 5 (Ends late May, 1986)
uEmacs30fix MicroEMACS version 30 updates.
uumap Automated UUCP maps
dither Color Dither (ver 1.1)
retouch Retouch(1): force changed date
backup Front end for BSD dump
junkmail Delete outdated mail automatically
smallc (3 parts) Small C compiler version C3.0R1.1
moon_sun Sun and Moon rise/set program
par More patches to par/unpar
smtp_send SMTP SEND command for Sendmail
bmgsubs Boyer-Moore-Gosper fast search subroutines
untic Decompile terminfo description file.
bmfix Fix to B/M/G for odd address optimization
rcsit Prepare files for RCS (new version)
--------------------
Subject: Volume 4 (Ends early May, 1986)
bm1.2 Bm version 1.2 (blindingly fast "fgrep")
simplex Simplex Curve Fitting Algorithm in C
chuni Change a user's default universe (Pyramid Specific)
Msg (8 parts) Screen-oriented "User Agent" mail program
sim2 Update to "sim" (volume 3) similarity tester
shortc C program to map flexnames into short identifiers
settz Time conversion / time zone system
TVX (10 parts) Portable editor, with "emacs" and "vi" modes
hershey.f77 (2 parts) Hershey Fonts in Fortran 77
rolodex (3 parts) Rolodex database program
68kdissasem (2 parts) 68000 disassembler
bm1.2speedup Speedup for bm on some machines
regexp3 2nd bug fix for regexp (volume 3)
tm_to_time Convert broken-down time into time_t.
68kdiss.fix Patches to make MC68000 disassembler work on SUN UNIX
amiga Amgia file browser
rcsit New version of rcsit(1) - prepare files for RCS
hershey (5 parts) Hershey fonts
egrep More Pep for Boyer-Moore Grep
tc Compile/decompile nroff driver tables (USG only)
regexpfix Regexp(3) improvement
shortc Shortc: sed output, and standard input
match1.2 Fast grep for Vaxen
rlogin 4.2bsd rlogin enhancements
list List-of-numbers generator
client Generic client and server commands for 4.2BSD
client_man Client/server context diffs to 4.2BSD man.c
UK-1.4 (5 parts) Sendmail UK-1.4
ISO_Pascal Yacc and Lex for ISO Level 0 Pascal
TVX 1st batch of TVX Bug fixes
rpt A program called 'rpt'
subnetARP 4.3BSD IP subnet ARP hack
UNaXcess (3 parts) UNaXcess (unix bulletin board)
uEmacs (6 parts) MicroEmacs, v. 30
travel Travel-itinerary macros for nroff
aaa The amazing awk assembler
sources Two tools for organizing sources from USENET
load Routines to check the load average
uEmacs_tc Termcap support for MicroEmacs v. 30 sources
archx Archx: suggested replacement for shar
ar Portable ar: suggested replacement for shar
se (8 parts) Georgia Tech 'se' screen editor
telnetd Telnetd in the kernel
uumail3 (2 parts) Uumail 3.0
lplot (2 parts) Lplot and quickplot
mail Patches to BSD4.2 mail (SysV mailx?)
sticky PostScript sticky label program
uEmacs3.6 (8 parts) MicroEMACS 3.6
texindex Make an index from a LaTeX .idx file
chown Improved and expanded chown/chgrp
calendar (2 parts) Calendar generation program
strings (3 parts) String routines
gr A Game Regulator
printfck Have lint check (most) printf calls
unparfix Unpar compatability with Sys V (patch)
texindex2 AAAAARRRRGGGGGHHHH!!!! Bugs in texindex!!!
UnaXcessfix UNaXcess update #1
xmodem 4.2BSD XMODEM programs
icon Tools for editing Sun icons
fmtr Simple text formatter
--------------------
Subject: Volume 3 (Ends Feburary, 1986)
G-format (4 parts) VAX BSD4.2 compiler modifications to use G-format fp.
GaTech (3 parts) Sendmail patches/configuration files from Georgia Tech
GaTech.upd Updates to GaTech sendmail package
Hey Hey(1) [from Unix/World, Oct. 85]
LA50 Convert Nroff underlines to LA50 and VTxxx sequences
LaserJet (2 parts) Ditroff HP LaserJet driver
MSdir MSDOS directory access routine
RFS (7 parts) Public domain, kernel-resident distributed file system
SPS (3 parts) Show process status - BSD only - replacement for "ps"
TCtoTI Termcap to terminfo conversion program
TRC (8 parts) Expert system building tool
agelog Trim log files while retaining recent entries
att_getopt AT&T's public domain distribution of getopt(3)
badm BSD4.2 MASSBUS disk formatter utility
bm Ken Yap's changes to bm (in volume 2)
calendar A calendar generator program - replaces UNIX "cal"
calls C program function call cross referencer
calls_4.2 Patches to calls for BSD4.2
chsh Chsh,chfn for SV (password file programs)
chsh2 Chsh,chfn - Original contained security bugs.
clr.queue Script to clean-up the sendmail queue
command Replacement for system(3).
ctags Ctags source code from Ken Arnold
date Formatted date program
decus_grep Public domain version of grep.
dial State transition controlled communications program
dial.sample Example dial script.
dialout BSD4.3 Kernel changes for dial in/out on modem lines
dtree Directory heirarchy display program for 4.2
ff (2 parts) Simple text formatter for flexible uniform formatting
give Give away ownership of files (System III/V specific)
hdiff Heckel diff(1) [CACM '78], but shows moved lines with m
head Public implementations of head(1) and ctags(1)
help VMS-style help facility
hyphen Program to enhance troff's hyphenation capability
idledaemon Yet another idle login checker (BSD 4.2 only)
ieee (6 parts) IEEE Floating Point Calculator (in Pascal)
infer Inference engine + demo
laserjet BSD 4.2+ lpd printcap/spooler for LaserJet printer
lcat Troff->laserjet filter package (uses vfont files)
lcat2 Troff->HP Laserjet filter - newfonts.c
less Similar to more(1) but better
lib_term Datum entry using termcap
libc_term Datum entry using curses
llib-dbm Lint library for the DBM routines (BSD systems)
man Compiled version of the 'man' program for System V
match Faster than bm (VAX only!)
mdump2 Revised mdump, the multiple dump per tape utility
modgen Extract usenet moderator list from postings
modnotes Notes (1.7 or later) updates for moderated groups
modula_pp Pretty printer for Modula-2 written in Modula-2
newspace Determine newsgroup disk usage
nwho Enchanced "who" program (uses termcap)
okstate Kermit archive on OKSTATE; uucp access information
pathalias2 (2 parts) Pathalias, the mod.map database path optimizer
pretty Pretty printer in lisp + columnator in CLU
prune Prune tops of line-oriented log files
rcsit A program to prepare files for RCS.
regexp Regular expression routines (like System V regexp(3))
regexp2 Bug in regexp, and fix
rename A companion to restor (automated inode mapping)
rmsecure Source for a safe "rm" (csh, BSD only)
rsend BSD network communications program (like write & talk)
scpp (2 parts) A selective C preprocessor - clean up your C files.
sim Software similarity tester for C programs
sndml.mods Mods to sendmail to provide translation tables
suntools Improved version of Sun's window manager (suntools)
swho Screen based who (uses curses - continuous update)
tc Control your terminal via termcap in shell scripts
telno Permute telephone numbers into letter equivalents
texchk (2 parts) Syntax checker for the LaTeX TeX macro package.
times.awk Uucp info from LOGFILE (awk script)
ttype Typing tutor - BSD specific
ttyuse Creates a Summary of daily Terminal usage
turbo_patch Fix to turbo_tools, SHELL.PAS transmitted with error
turbo_tools (2 parts) Turbo Pascal version of "Software Tools in Pascal"
uuhosts4 Grab mod.map data for later use version1.69
uumail2 Pathalias-based uucp mailer, release 2
uumail2.fix Small fix to uumail release 2
vtem A VT100 emulator based on termcap
wm.new Window manager built on top of curses
xargs Execute a command with many arguments
--------------------
Subject: Volume 2 (End roughly August, 1985)
Smail1 Update to smail (in volume 1)
access Kernal Hacks for access control lists
basic (4 parts) A BASIC interpreter in C (needs work)
bgrep Boyer-Moore based fgrep like program
bm Much faster Boyer-Moore
bm2 Various bm updates
choose A program to select lines at random
compress (2 parts) Compression 4.0 program better than pack or compact
cshar3 Update to C shar (volume 1)
cpg+mdep3 Cpg revisited (C formatter - original in volume1)
makekits Software "kit" generation script
mdump Multiple dump per tape utility (see update in volume 3)
remote Remote mag tape routines
remote2 Small patch to remote tape library
rtar Diffs to tar to use a remote system's tape drive
runtime Runtime memory allocation for multi-dimensional arrays
tools (6 parts) Software Tools in Pascal
uroff Nroff underlining
window (4 parts) BSD 4.2 window manager + Patches to Curses
wire (2 parts) Wirewrap program.
--------------------
Subject: Volume 1 (Ends June 1985)
ANSI.C Yacc and Lex for 11/12/84 draft of ANSI C
Smail A smart net mailer - a front end using pathalias data
UK-1.1 (3 parts) UK-1.1 Sendmail Configuration Package
Xlisp1.4 (4 parts) Lisp written in C with object oriented extensions
bed Editor for binary files. Front end for ascii editors
bourne (9 parts) Bourne shell enhancements (history,tilde,job control)
cforth (3 parts) Forth Interpreter written in C
checkin Editor interface for RCS logs
cpg+mdep Cpg - C formatter, mdep - make dependency generator
cpp (3 parts) C preprocessor suitable for use with Decus C
cshar Shell archive builder (shar) written in C
cxref C cross referencer
diffc Contextual diff (diff -c) for Bell systems
dynamic Dynamic loading code for 4.2bsd
getopt Public domain getopt(3)
lbgm Newsgroup archiving (Little Bird Gave Me)
newshar The Connoisseur's Shar, version 2
newsweed A program to delete unwanted news articles
patch A program to apply diff format output to update files (1.3)
pcurses (11 parts) Public domain Terminfo/Curses (needs a little work)
rfc_882 RFC 882 - Domain Names - Concepts and Facilities
rn (9 parts) Rn news reading program, version 4.3
rpc (10 parts) Sun "Remote Procedure Call" source code
sendmail.cf GaTech Sendmail configuration
uucpanz.V7 A uucp status program (V7, BSD version)
uucpanz.S5 Uucpanz for System V
uuque A uuwizard's utility for uucp queue snooping
vnews (7 parts) New reading program for 2.10.2 news
vstr Dynamic string package
xfernews Uucp traffic batching system
xref A general purpose cross reference utility
vnews.1 Manual page for 2.10.2 vnews(1)
readnews.1 Manual page for 2.10.2 readnews(1)
expire.8 Manual page for 2.10.2 expire(8)
exit 0 # Just in case...
--
Please send comp.sources.unix-related mail to [email protected].
Use a domain-based address or give alternate paths, or you may lose out.
exit 0 # Just in case...
exit 0 # Just in case...