ljr/ljcom/bin/maint/moods.pl

11 lines
196 B
Perl
Raw Normal View History

2019-02-05 21:49:12 +00:00
#!/usr/bin/perl
#
$maint{'makemoodindexes'} = sub
{
print "-I- Making mood index files.\n" if $VERBOSE;
system("find $LJ::HTDOCS/img/mood/ -type d -exec makemoodindex.pl {} \\;");
};
1;