added output for subseries and xml_file to list-book-info.sh
authorJonathan Blake <jonathan.blake@projectaon.org>
Thu, 22 Feb 2018 23:39:44 +0000 (23:39 +0000)
committerJonathan Blake <jonathan.blake@projectaon.org>
Thu, 22 Feb 2018 23:39:44 +0000 (23:39 +0000)
git-svn-id: https://projectaon.org/data/trunk@2700 f6f3e2d7-ff33-0410-aaf5-b4bee2cdac11

common/scripts/list-book-info.sh

index ec30279..e4490d5 100755 (executable)
@@ -17,7 +17,12 @@ book_db="$AONDIR/common/sqlite/bookcodes.db"
 
 if [ -z "$1" ]; then
     sqlite3 -column -noheader "$book_db" <<EOF
-        select book, lang, series
+        select 
+            book
+            , lang
+            , series
+            , subseries
+            , xml_file
         from bookcodes
         order by book
 EOF