removed trailing whitespace from output of list-bookcodes-* scripts
authorJonathan Blake <jonathan.blake@projectaon.org>
Thu, 22 Feb 2018 23:50:26 +0000 (23:50 +0000)
committerJonathan Blake <jonathan.blake@projectaon.org>
Thu, 22 Feb 2018 23:50:26 +0000 (23:50 +0000)
git-svn-id: https://projectaon.org/data/trunk@2702 f6f3e2d7-ff33-0410-aaf5-b4bee2cdac11

common/scripts/list-bookcodes-all.sh
common/scripts/list-bookcodes-by-lang.sh
common/scripts/list-bookcodes-by-series.sh
common/scripts/list-bookcodes-by-subseries.sh

index 8f738e3..7d4cfbd 100755 (executable)
@@ -9,4 +9,4 @@ fi
 
 book_db="$AONDIR/common/sqlite/bookcodes.db"
 
 
 book_db="$AONDIR/common/sqlite/bookcodes.db"
 
-sqlite3 -column -noheader "$book_db" "select book from bookcodes order by book"
+sqlite3 -noheader "$book_db" "select book from bookcodes order by book"
index 43d1d79..a967395 100755 (executable)
@@ -19,7 +19,7 @@ do
         exit 1
     fi
 
         exit 1
     fi
 
-    sqlite3 -column -noheader "$book_db" <<EOF
+    sqlite3 -noheader "$book_db" <<EOF
       select book 
       from bookcodes 
       where lang = '$lang'
       select book 
       from bookcodes 
       where lang = '$lang'
index 3af2928..8005e41 100755 (executable)
@@ -19,7 +19,7 @@ do
         exit 1
     fi
 
         exit 1
     fi
 
-    sqlite3 -column -noheader "$book_db" <<EOF
+    sqlite3 -noheader "$book_db" <<EOF
       select book 
       from bookcodes 
       where series = '$series'
       select book 
       from bookcodes 
       where series = '$series'
index 450520d..2812f00 100755 (executable)
@@ -19,7 +19,7 @@ do
         exit 1
     fi
 
         exit 1
     fi
 
-    sqlite3 -column -noheader "$book_db" <<EOF
+    sqlite3 -noheader "$book_db" <<EOF
       select book 
       from bookcodes 
       where subseries = '$subseries'
       select book 
       from bookcodes 
       where subseries = '$subseries'