Posts by Hertz Silva • 1 point
1 post
-
-2
votes2
answers2780
viewsA: How to show a separate number per point every 3 houses?
Follow simple example to put . every three digits and at the end put a comma: #!/bin/bash if [ -f "${1}" ] then echo -e "Sintaxe : $0 [ number ]\n" exit 1 else valor="$1" fi num="`echo "${valor}" |…
javascriptanswered Hertz Silva 1