Files
oldlinux-files/ftp-archives/tsx-11.mit.edu/1993-12-07/mail-archive/get_header
2024-02-19 00:24:15 -05:00

20 lines
282 B
Perl

#!/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;
}