File indexing completed on 2024-05-05 17:42:26

0001 #! /usr/bin/perl
0002 
0003 use strict;
0004 
0005 while (<>)
0006 {
0007     chomp;
0008     s/fixed=Oxygen\ Mono/fixed=Hack/;
0009     print "$_\n";
0010 }