Tagged Questions
bc is an arbitrary precision calculator language used in shell scripting.
7
votes
2answers
261 views
Making decimal.Decimal the default numerical type in Python
Is there some way I could make decimal.Decimal the default type for all numerical values in Python? I would like to be able to use Python in a manner similar to the bc and dc programs without having ...
5
votes
4answers
143 views
How do I get bc(1) to print the leading zero?
I do something like the following in a Makefile:
echo "0.1 + 0.1" | bc
(in the real file the numbers are dynamic, of course)
It prints .2 but I want it to print 0.2.
I would like to do this ...
4
votes
2answers
130 views
Unique Identifier for certificate Issuer (X509Name)
in my app I'm using the sha256 of the issuer Name (x509CertImpl.getIssuerDN().getName()) and the certificate serial number to uniquely identify a certificate, but now I have realized that other ...
4
votes
4answers
500 views
ASN.1 Encoding-Decoding
I am currently developing a client-server program, the client in Java/C and server in C.
I have to transport cryptographic data(like the client should pass data to Server to encrypt/decrypt, compute ...
3
votes
3answers
5k views
Bash Scripting and bc
I'm trying to write a bash script and I needed to do some floating point math. Basically I want to do something like this:
NUM=$(echo "scale=25;$1/10" | bc)
if [ $? -ne 0 ]
then
echo bad
fi
The ...
2
votes
6answers
109 views
Bash programmation (Cygwin): Illegal Character ^M
I have a problem with a character. I think it's a conversion problem between dos and unix.
I have a variable that is a float value.
When I print it with the echo command i get:
0.495959
But when I ...
2
votes
3answers
271 views
DDD - Bounded Contexts and Multiple Models?
I'm reading about the idea of Bounded Contexts in DDD, and I'm starting to realize that I don't have a clear understanding of exactly what a Model looks like in practice. (I might not even know ...
2
votes
3answers
149 views
What is the difference of using BC keys or default?
Both lines of code:
KeyPairGenerator.getInstance("RSA")
KeyPairGenerator.getInstance("RSA", "BC")
works well. So, what's the differecente using BC or not?
Is BC completely compatible with the ...
2
votes
1answer
192 views
one line using sed and bc together?
I want to add one to the last value at the end of a string in sed.
I'm thinking along the lines of
cat 0809_data.csv |sed -e 's/\([0-9]\{6\}\).*\(,[^,]*$\)/\1\2/g'| export YEARS = $(echo `grep -o ...
1
vote
1answer
162 views
How can hex addition in BC be made to overflow at the 8 byte limit (uint64)?
I am adding a series of 8196 64-bit unsigned integers, and I need the running-total to "roll-over" back to zero and continue counting from there... just as a "normal" programing language would do at ...
1
vote
2answers
131 views
Is there a good tool to parse/evaluate mathematical expressions?
Argghh:
$ echo 2 4 | bc
(standard_in) 1: parse error
$ echo $?
0
Why on earth would an otherwise perfectly reasonable program succeed when it recognizes a parse error? Clearly, I cannot use bc to ...
1
vote
3answers
423 views
how to pipe bc-calculation into shell variable
i have a calculation on a linux shell, somethink like this
echo "scale 4;3*2.5" |bc
which gives me an result, now i like to pipe the result of this calculation into an Variable so that I could use ...
1
vote
2answers
88 views
How do I stop bc from splitting lines?
I'm using bc from a bash script to do some quick and dirty BigInteger math but, when I bump up the scale, it starts splitting lines on me:
pax> echo 'scale=200 ; 1 / 4' | bc
...
1
vote
2answers
211 views
Oneliner to calculate complete size of all messages in maillog
Ok guys I'm really at a dead end here, don't know what else to try...
I am writing a script for some e-mail statistics, one of the things it needs to do is calculate the complete size of all messages ...
1
vote
2answers
1k views
How to compare two floating-point values in shell script
I had to do a division in shell script and the best way was:
result1=`echo "scale=3; ($var1 / $total) * 100"| bc -l`
result2=`echo "scale=3; ($var2 / $total) * 100"| bc -l`
but I want to compare ...
0
votes
2answers
29 views
Make PHP's bc round instead of truncate?
I'd like bcadd(4.9,3) to return 8 rather than 7. I'm using an example without lots of decimal places here, but the basic idea (that I want to round, rather than truncate) still stands. How do I do ...
0
votes
3answers
88 views
Using bc on a column of values in a csv
I have a long csv file with 5 columns of values.
How can I extract every value from a column and pass this value to bc to extract a cosine on it?
I'm trying using awk to extract the values but I fail ...
0
votes
4answers
67 views
How do I calculate the log of a number using bc?
This is the first time I am using bc. I want to calculate the log (base 10) of a number. How do I this?
0
votes
4answers
166 views
different calculation results using bc in script and console
In script i'm writing now i need some decimal calculations so i decided to use bc. I'm not familiar with this tool so forgive me if the question is trivial.
When i use console and type in :
set ...
0
votes
1answer
270 views
How to exit bash script with case statement?
I have the following script :
#!/bin/sh
#Script bc : Celsius <-> Fahrenheit
echo "Temperature ?"
read Temp
echo "Celsius or Fahrenheit ?"
echo "c) Celsius"
echo "f) Fahrenheit"
read case;
...
0
votes
2answers
262 views
Bitwise operations in BC?
$ bc
BC> ibase=2
BC> 110&101 // wanna get 100
(standar_in) 8: syntax error
Wikipedia informs that the ops are "|, & and ^". It may be that they work only in certain ...
0
votes
1answer
260 views
What to consider before storing negative-dates in MySQL?
I'm working on a project now that will require me to enable users to store negative-dates in the database. These dates have the potential to span many thousands of years BC, and as late as 'Today.' ...
-1
votes
3answers
71 views
working with bc
trying to sum elements in an array using bc,i have a file with names and thier vaules if the names appears 3 times i should multiply its value with 3 then find the sum of all the elements together,im ...
-1
votes
3answers
403 views
convert large number to spoken english
Converting 'small' numbers to English is not to troublesome. But if you handle BCMath Arbitrary Precision numbers then it can be.
Using code from:
...