dot instead of comma as thousand separator

Carla

I read about --blocksize for ls to get a thousands separator.

However my computer gives me dot (.) and not comma (,):

$ ls -l --block-size="'1"
total 11.893.190.656
-rw------- 1 carlah users  1.081.192.448 Apr 16  2013 D1.vdi
-rw-rw-r-- 1 carlah users             37 Apr  3  2012 interface.txt
-rw------- 1 carlah users     86.052.864 Apr 16  2012 D2.vdi
drwx------ 2 carlah users          4.096 Apr 16  2012 Snapshots/
-rw------- 1 carlah users 10.725.925.376 Apr 16  2012 Vista.vdi

I tried LC_NUMERIC=en_US ls -l --block-size="'1" to change that but that did just remove the dots not turn them into commas. Am I doing something wrong?

Zelda

You should look at your settings with:

echo $LC_NUMERIC

and then try something like what you have there, like:

LC_NUMERIC="en_US.UTF-8" ls -l --block-size="'1"

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to calculate numbers with dot thousand separator in javascript

From Dev

Only add thousand separator before decimal comma

From Dev

Regex for positive lookahead thousand separator that would not mach numbers after dot

From Dev

Use a regular expression to add a period (dot) as a thousand separator

From Dev

NumericUpDown: accept both comma and dot as decimal separator

From Dev

NumericUpDown: accept both comma and dot as decimal separator

From Dev

JavaScript regex to accept numbers with comma separator (thousands) and dot separator (decimals)

From Dev

Dot instead of comma on numerical keyboard

From Dev

SSRS: show comma instead of dot

From Dev

C# aspx decimal thousand with comma and decimal with dot

From Dev

Show comma instead of point as decimal separator

From Dev

Show comma instead of point as decimal separator

From Dev

Space separator INSTEAD of a comma - large number outputs

From Dev

Python regex for number with or without decimals using a dot or comma as separator?

From Dev

How to accept both dot and comma as a decimal separator with WTForms?

From Dev

parse double from file with random comma or dot separator

From Dev

How to use jquery function on numbers separated by .(dot) or ,(comma) as thousands separator

From Dev

How to convert floating point decimal separator from dot to comma in Javascript

From Dev

How to change the decimal separator from a comma to a dot in SQL Server

From Dev

parse double from file with random comma or dot separator

From Dev

C++ %f dot instead of comma

From Dev

Java BigDecimal can have comma instead dot?

From Dev

String to decimal conversion: dot separation instead of comma

From Dev

Regex for decimal number dot instead of comma (.NET)

From Dev

Java floating point number in comma instead of dot

From Dev

Thousand Separator in DBGrid

From Dev

Devexpress XRtableCell thousand separator?

From Dev

Thousand separator in awk

From Dev

Make numpad comma key type dot instead of comma through registry

Related Related

  1. 1

    How to calculate numbers with dot thousand separator in javascript

  2. 2

    Only add thousand separator before decimal comma

  3. 3

    Regex for positive lookahead thousand separator that would not mach numbers after dot

  4. 4

    Use a regular expression to add a period (dot) as a thousand separator

  5. 5

    NumericUpDown: accept both comma and dot as decimal separator

  6. 6

    NumericUpDown: accept both comma and dot as decimal separator

  7. 7

    JavaScript regex to accept numbers with comma separator (thousands) and dot separator (decimals)

  8. 8

    Dot instead of comma on numerical keyboard

  9. 9

    SSRS: show comma instead of dot

  10. 10

    C# aspx decimal thousand with comma and decimal with dot

  11. 11

    Show comma instead of point as decimal separator

  12. 12

    Show comma instead of point as decimal separator

  13. 13

    Space separator INSTEAD of a comma - large number outputs

  14. 14

    Python regex for number with or without decimals using a dot or comma as separator?

  15. 15

    How to accept both dot and comma as a decimal separator with WTForms?

  16. 16

    parse double from file with random comma or dot separator

  17. 17

    How to use jquery function on numbers separated by .(dot) or ,(comma) as thousands separator

  18. 18

    How to convert floating point decimal separator from dot to comma in Javascript

  19. 19

    How to change the decimal separator from a comma to a dot in SQL Server

  20. 20

    parse double from file with random comma or dot separator

  21. 21

    C++ %f dot instead of comma

  22. 22

    Java BigDecimal can have comma instead dot?

  23. 23

    String to decimal conversion: dot separation instead of comma

  24. 24

    Regex for decimal number dot instead of comma (.NET)

  25. 25

    Java floating point number in comma instead of dot

  26. 26

    Thousand Separator in DBGrid

  27. 27

    Devexpress XRtableCell thousand separator?

  28. 28

    Thousand separator in awk

  29. 29

    Make numpad comma key type dot instead of comma through registry

HotTag

Archive