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

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