bc cammand in UNIX


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers bc cammand in UNIX
# 1  
Old 07-30-2001
bc cammand in UNIX

Can some one please explain the correct syntax of the bc command to me. The UNIX man bc does not show you much.

Regards
Wolf
Smilie
# 2  
Old 07-30-2001
I'm not really sure what you're asking for here, because the man page on the bc command is fairly extensive. There are many options to choose from and the man page does a fairly good job of explaining them and what the command actually does.
# 3  
Old 07-30-2001
In a script I am grepping for two values and put them in seperate files. In this same script I want to do a calculation. This is the part that I struggle with : ***part of the script*****

NUM1=`cat /app/temp/file1.txt`
echo $NUM1 **value is 198.3**
NUM2=`cat /app/temp/file2.txt`
echo $NUM2 **value is 68.2**

TOT=`echo "$NUM1" / "$NUM2" | bc`
echo $TOT

----
Now, when using bc like this in the same script, it will trow away all numbers after the decimal sign. This is not what i need it to do.

Regards
Wolf


Smilie Smilie
# 4  
Old 07-30-2001
Bug Solution

in bc command, there is a variable called "scale", which is
number of digits right of decimal point.

#x1=5.7
#x2=6.7
#x=$(printf "%s\n" "scale = 10; `echo $x1`/`echo $x2`" |bc)

it works. : )
# 5  
Old 07-30-2001
thanks a lot......it works 100%......

can you explain the command a bit to me please......Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File Transfer from Window server to UNIX and UNIX to UNIX

Dear All, Can someone help to command or program to transfer the file from windows to Unix server and from one unix server to another Unix server in secure way. I would request no samba client. (4 Replies)
Discussion started by: yadavricky
4 Replies

2. UNIX for Dummies Questions & Answers

How does unix system administration, unix programming, unix network programming differ?

How does unix system administration, unix programming, unix network programming differ? Please help. (0 Replies)
Discussion started by: thulasidharan2k
0 Replies

3. Shell Programming and Scripting

Passing wildcards to cammand line arguments

I have a csh script plot-model.csh I want to be able to pass wildcards for the input file names such as ./plot-model.csh *8x6smp.cmod Currently I have to pass the full files names one after each other which I then store in a list. Then I proceed to plot the data within it. Now I... (7 Replies)
Discussion started by: kristinu
7 Replies

4. Shell Programming and Scripting

Batch job in unix server to move the pdf file from unix to windows.

Hi Experts, I have a requirement where i need to setup a batch job which runs everymonth and move the pdf files from unix server to windows servers. Could some body provide the inputs for this. and also please provide the inputs on how to map the network dirve in the unix like that... (1 Reply)
Discussion started by: ger199901
1 Replies

5. Shell Programming and Scripting

FTP script for sending a file from one unix directory to another unix server director

Hi, My local server is :/usr/abcd/ Remote server is :/Usr/host/test/ I want to send files from local unix directory(All files starting with O_999) to remote host unix directory. Can any body give me the Unix Shell script to do this. One more doubt: Shall we need to change the file... (1 Reply)
Discussion started by: raja_1234
1 Replies

6. Shell Programming and Scripting

SORT Cammand

Hi every body, What is the limitation of UNIX command sort that related to file size? In other words, what is the maximum file size that sort command can process? (4 Replies)
Discussion started by: aldowsary
4 Replies

7. UNIX for Advanced & Expert Users

missing Path(in UNIX) when i launch a job on to unix machine using windows SSh

hi i want run an unix application from a windows program/application.i am using SSH(command line version)to log on to a unix machine from windows. the application has to read a configuration file inorder to run. the configuration file .CFG is in bin in my home directory. but the application... (1 Reply)
Discussion started by: megastar
1 Replies

8. UNIX for Dummies Questions & Answers

Unix History Question: Why are filenames/dirnames case sentsitive in Unix?

I tried looking for the answer online and came up with only a few semi-answers as to why file and directory names are case sensitive in Unix. Right off the bat, I'll say this doesn't bother me. But I run into tons of Windows and OpenVMS admins in my day job who go batty when they have to deal... (3 Replies)
Discussion started by: deckard
3 Replies

9. UNIX for Dummies Questions & Answers

UNIX problem? Unix programm runs windows 2000 CPU over 100%

Okee problems...!! What is happening: Unix server with some programms, workstations are windows 2000, the workstations work good but when you start a programm on the Unix server the CPU of the workstations go to 100% usage resulting that the system gets very slow. The programm well its running so... (2 Replies)
Discussion started by: zerocool
2 Replies
Login or Register to Ask a Question