From 4b6f4b8341758a10bd8e87ab6796361c9166bd5e Mon Sep 17 00:00:00 2001 From: olli Date: Wed, 18 Jan 2023 10:34:45 +0100 Subject: [PATCH] LANG for "." as decimal separator (and not e.g. in German ",") --- gaboshlib.include | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gaboshlib.include b/gaboshlib.include index fd3a4dd..7718d5f 100644 --- a/gaboshlib.include +++ b/gaboshlib.include @@ -49,3 +49,6 @@ function undirect(){ exec 2>&9; } function redirect(){ exec 2>&8; } trap "redirect;" DEBUG PROMPT_COMMAND='undirect;' + +# LANG for "." as decimal separator (and not e.g. in German ",") +export LANG=en_US.UTF-8