NAME
imdbtop - list actors that are popular in your movie collection
SYNOPSIS
# List all actors in the given movies, sorted by number of (given)
# movies they starred in
imdbtop < list_of_movie_ids
# As above, but only lists top 20 actors
imdbtop -n 20 < list_of_movie_ids
# As above, but only lists actors that appeared in at least 5 of the
# given movies
imdbtop -m 5 a_list_of_movie_ids another_list
DESCRIPTION
This script solves a simple problem: you have a list of movies you've watched (in the form of IMDB IDs), and you are looking for the actors that have starred most often in these movies.
OPTIONS
- -n count, --nr count
-
Only print the top count actors.
- -m min, --min-count min
-
Do not print actors that appear in less than min of the given movies.
- -c, --cache, --no-cache
-
If --cache, stores the content of retrieved pages in a cache. Defaults to --no-cache.
- --cache-root path
-
Location where cached pages are stored. Defaults to /tmp.
SEE ALSO
AUTHOR
Marius Gavrilescu, <marius@ieval.ro>
COPYRIGHT AND LICENSE
Copyright (C) 2016 by Marius Gavrilescu
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.24.0 or, at your option, any later version of Perl 5 you may have available. b