This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # | |
| # Description: List all Unmatched and Incorrectly matched files. | |
| # Author: https://github.com/Rycochet | |
| # Requires: plexapi, python_dotenv | |
| # | |
| # Config via a .env file, PLEX_TOKEN, PLEX_URL (optional), PLEX_PATH<n> + PLEX_PATH<n>_REPLACE | |
| import glob | |
| import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| docker inspect -f '{{.Name}} - {{range.NetworkSettings.Networks}}{{.IPAddress}}, {{end}}' $(docker ps -aq) | sort |
OlderNewer