Skip to content

Commit ba84d50

Browse files
committed
My old source tree for building QuakeWorld for MS-DOS using Wattcp
0 parents  commit ba84d50

File tree

971 files changed

+355552
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

971 files changed

+355552
-0
lines changed

lowfname.pl

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/perl -w
2+
use strict;
3+
4+
my (@files, $filename);
5+
@files = glob "*"; # Change to match fewer files if desired
6+
foreach $filename (@files)
7+
{
8+
# Skip the two special files (don't know how the rename
9+
# would affect these...)
10+
next if ($filename eq '.') || ($filename eq '..');
11+
rename $filename, lc($filename);
12+
}

0 commit comments

Comments
 (0)