mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-01 13:39:41 +00:00
7 lines
223 B
Bash
7 lines
223 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Dump libraryFolders table for human consumption
|
||
|
|
|
||
|
|
DB_PATH="/mnt/docker/work/books/audiobookshelf/config/absdatabase.sqlite"
|
||
|
|
|
||
|
|
sqlite3 -header -column "$DB_PATH" "SELECT id, path, libraryId FROM libraryFolders;"
|