e.g. query TV Shows via PowerShell on Windows:
Shell: Select all
filebot -mediainfo -r /path/to/files --filter episode --format "{n}" | Sort-Object -Unique
e.g. query TV Shows via bash on macOS or Linux:
Shell: Select all
filebot -mediainfo -r /path/to/files --filter episode --format "{n}" | sort -u
--filter episode ... ignore files that are not episode files
--format "{n}" ... print the series name for each episode
| sort -u ... pipe the output to the sort command to generate a list of unique alphabetically sorted series names

