123456789101112131415
#!/usr/bin/perl # this is a quick hack to make intrface.def readable.. for testing purposes open F,"<intrface.def"; open OF,">intrface.txt"; while (<F>) { s/\xff\xfe//; s/\0//g; print OF; } close F; close OF;