add directory mail-archive

This commit is contained in:
gohigh
2024-02-19 00:25:02 -05:00
parent 07129c3397
commit a778c607a4
1056 changed files with 796887 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/athena/bin/perl
#
# This is something which strips out the table of contents from a digest.
#
while (<>) {
if (/^Linux-Activists Digest/) {
print;
last;
}
}
while (<>) {
if (/^-------------------------------------------------------/) {
print;
last;
}
print;
}