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

20 lines
275 B
Perl

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