@LưuVĩnhPhúc it is unicode, so any shell supporting unicode will work. That is all of them, though some struggle with non-ascii, when calculating widths. However you may need to install a new font, maybe a different terminal emulator.
– ctrl-alt-delorMay 20 '17 at 13:21
1 Answers1
2
You can't. Bash will only work with integers. For more precision, use something like bc.
bc -l <<< 'scale=2; 5/2'
– RomanPerekhrest May 20 '17 at 11:01$((5/2)).$((10*5/2%10))
(j/k) – frostschutz May 20 '17 at 11:18