enlightenment-module-forecasts/images/a.pl

15 lines
209 B
Perl
Raw Normal View History

2021-02-18 04:21:49 -08:00
#!/usr/bin/perl
sub main()
{
opendir(my $dir, '.');
while (readdir $dir) {
if ($_ =~ m{.*\.png}) {
print "FORECASTS_ICON(\"$_\", 10, 10, 110, 110, 1.0);\n";
}
}
closedir($dir);
}
main();