Skip to content

Instantly share code, notes, and snippets.

@scotgabriel
Created May 14, 2020 23:53
Show Gist options
  • Save scotgabriel/1f344f98e1452acf78f92d00442d03e1 to your computer and use it in GitHub Desktop.
Save scotgabriel/1f344f98e1452acf78f92d00442d03e1 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
/usr/bin/sqlite3 /var/lib/plexmediaserver/Library/Application\ Support/Plex\ Media\ Server/Plug-in\ Support/Databases/com.plexapp.plugins.library.db 'SELECT title,added_at from metadata_items WHERE metadata_type=1 ORDER BY title ASC;' >> /path/to/save/to/plex-ordered-by-movie-name.txt
/usr/bin/sqlite3 /var/lib/plexmediaserver/Library/Application\ Support/Plex\ Media\ Server/Plug-in\ Support/Databases/com.plexapp.plugins.library.db 'SELECT title,added_at from metadata_items WHERE metadata_type=1 ORDER BY added_at DESC;' >> /path/to/save/to/plex-ordered-by-added-date.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment