source: projects/hwdata/trunk/mconvert @ 7989

Revision 7989, 171 bytes checked in by daisuke, 10 years ago (diff)

forked.

  • Property svn:executable set to *
RevLine 
[7989]1#!/usr/bin/perl
2
3while (<>) {
4    /Identifier.*"(.*)"/ && print $1, "; 0; ";
5    /HorizSync ([0-9-]+)/ && print $1, "; ";
6    /VertRefresh ([0-9-]+)/ && print $1, "\n";
7}
Note: See TracBrowser for help on using the repository browser.