<div dir="ltr">2013/12/24 Colin Watson <span dir="ltr"><<a href="mailto:cjwatson@ubuntu.com" target="_blank">cjwatson@ubuntu.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class=""><div class="h5">On Mon, Dec 23, 2013 at 07:44:24PM +0100, Johnny Rosenberg wrote:<br>
> In a terminal (bash), is there something that I can type that gives me the<br>
> current decimal separator?<br>
><br>
> For instance, if Swedish locale:<br>
><br>
> $ echo "Current decimal separator: ${SomeVariable}"<br>
> Current decimal separator: ,<br>
> $<br>
<br>
</div></div>  locale -k LC_NUMERIC<br>
<br>
(pipe through the obvious things if you want to use this in a script<br>
rather than just look at it)<br></blockquote><div><br></div><div>Thanks. I tried:</div><div>$ locale -k LC_NUMERIC | grep decimal_point | sed 's/[^\.,]//g'</div><div>,</div><div>$</div><div><br></div><div>Works fine.</div>
<div><br></div><div>I don't need the thousands separator in this case, since I was only going to use it for bc, which doesn't seem to use them.</div><div>I just want to use the decimal character on my numerical keypad when typing the numbers to my script, and I just thought that it would be nice if the simple script also works on a different setup.</div>
<div><br></div><div>So now I just let the user (me) type in the systems decimal separator, and the script replace it with a decimal point, There some calculation, and the answer has i decimal point that needs to be converted to the system's decimal separator for output.</div>
<div><br></div><div>Thanks! Now I'm just going to make the script work as well…</div><div><br></div><div><br></div><div><br></div><div>Johnny Rosenberg</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<br>
On the other hand, if what you're really trying to do is to format a<br>
number with thousands separators, then you want some variant of:<br>
<br>
  env printf "%'d\\n" 1000<br>
<br>
(use a different conversion specifier such as 'g' rather than 'd' if you<br>
need a fractional part as well; the "env" forces the use of the printf<br>
binary from coreutils rather than any shell builtin, and in particular<br>
dash's builtin printf is inadequate for this, although bash's builtin<br>
printf is fine)<br>
<span class=""><font color="#888888"><br>
--<br>
Colin Watson                                       [<a href="mailto:cjwatson@ubuntu.com">cjwatson@ubuntu.com</a>]<br>
</font></span><div class=""><div class="h5"><br>
--<br>
ubuntu-users mailing list<br>
<a href="mailto:ubuntu-users@lists.ubuntu.com">ubuntu-users@lists.ubuntu.com</a><br>
Modify settings or unsubscribe at: <a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-users" target="_blank">https://lists.ubuntu.com/mailman/listinfo/ubuntu-users</a><br>
</div></div></blockquote><br></div>