mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-01 05:29:41 +00:00
6 lines
223 B
Bash
Executable file
6 lines
223 B
Bash
Executable file
#!/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;"
|