mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
b6e3bbc037
- initial checkin Makefile: - changes to allow for the new gsh ref manual - moved *.Z *.gz files into an "uploads" subdir README: - added some comments re the sgml stuff head.html, index.html, mkmandex, mkhtmlman, manindex.html, mkstatus, oldrefs.html, refs.html, tail.html: - eliminated <base> tags - fully specify page colours refs.html: - added links for new gsh manual index.html: - add dates for "NEW" section - added comment about new gsh manual intro.tex: - fully specify page colours - fixed a typo: "2.0.4" --> "2.0.6" in installation notes kern.tex: - fully specify page colours
26 lines
497 B
Perl
Executable File
26 lines
497 B
Perl
Executable File
#! /usr/bin/perl
|
|
|
|
$months[0] = '';
|
|
$months[1] = 'January';
|
|
$months[2] = 'February';
|
|
$months[3] = 'March';
|
|
$months[4] = 'April';
|
|
$months[5] = 'May';
|
|
$months[6] = 'June';
|
|
$months[7] = 'July';
|
|
$months[8] = 'August';
|
|
$months[9] = 'September';
|
|
$months[10] = 'October';
|
|
$months[11] = 'November';
|
|
$months[12] = 'December';
|
|
|
|
while (<>) {
|
|
if (m,\$Date: 1999/02/21 23:37:13 $,) {
|
|
$year = $1;
|
|
$month = $2;
|
|
$day = $3;
|
|
$_ = $` . $day . ' ' . $months[int($month)] . ' ' . $year . $';
|
|
}
|
|
print;
|
|
}
|