in reply to Listing CSS style entities
I have solved this problem myself. Here's the code that prints all css styles from a given *.css file.
#!C:\Perl\bin\perl -w use CSS::Tiny; $CSS = CSS::Tiny->read($ARGV[0]); foreach (sort keys %$CSS) { print $_."\n"; }
|
---|