]> git.g-eek.se Git - users/gustav/scripts.git/commitdiff
[folkets] Bugfix of language setting
authorGustav Eek <gustav.eek@fripost.org>
Thu, 3 Oct 2019 13:38:16 +0000 (15:38 +0200)
committerGustav Eek <gustav.eek@fripost.org>
Thu, 3 Oct 2019 13:38:16 +0000 (15:38 +0200)
Refactor *LANG* -> *LANGUAGE*. Bash variables overwrote environmental
variable.

Also call "/usr/bin" versions to avoid aliases.

folkets

diff --git a/folkets b/folkets
index 9f69e813f6d3f379eeb86ee77152ec92592dbf6e..f6665c3c0d7fb493d071ad1a95413b9e7a41bd85 100755 (executable)
--- a/folkets
+++ b/folkets
@@ -6,7 +6,7 @@ set -e
 
 BASE="https://folkets-lexikon.csc.kth.se"
 LOC="folkets/service"
-LANG="both"
+LANGUAGE="both"
 INTERFACE="sv"
 LOG="/tmp/folkets/error.out"
 HTML="/tmp/folkets/out.html"
@@ -17,13 +17,14 @@ url="$BASE/$LOC"
 
 form="
   --data-urlencode word=$word
-  --data-urlencode lang=$LANG
+  --data-urlencode lang=$LANGUAGE
   --data-urlencode interface=$INTERFACE
 "
 
 mkdir -p $(dirname $LOG $HTML)
 
-curl -v -L --get ${form} ${url} 2> $LOG | w3m -T text/html
+/usr/bin/curl -v -L --get ${form} ${url} 2> $LOG |\
+    /usr/bin/w3m -T text/html
 
 # Consider make also the call with w3m
 # Consider put on stdout