Bash: How to do decimal number division? -


इस सवाल का पहले से ही एक उत्तर है: < / P>

  • 5 जवाब

    $ num = 12.53

    $ (($ num / 5)) काम नहीं कर रहा है।

    P>

      केंट $ num = 12.53 $ echo "scale = 2; $ num / 5" | bc 2.50 kent $ awk -vn = "$ Num" 'BEGIN {printf}% .2f \ n ", n / 5}' 2.51   

    ध्यान दें कि bc 's scale < / कोड> और printf का प्रारूप अलग-अलग परिणाम दे सकता है

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -