mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-01 21:49:40 +00:00
9 lines
313 B
Bash
Executable file
9 lines
313 B
Bash
Executable file
#!/bin/bash
|
|
# Dump libraryFolders table for human consumption
|
|
|
|
DB_PATH="/mnt/docker/work/books/audiobookshelf/config/absdatabase.sqlite"
|
|
|
|
echo "=== libraryFolders ==="
|
|
echo "ID | PATH | LIBRARY_ID"
|
|
echo "---|------|-----------"
|
|
sqlite3 -header -column "$DB_PATH" "SELECT id, path, libraryId FROM libraryFolders;"
|