Running Total Running Wild


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Running Total Running Wild
# 1  
Old 03-08-2010
Running Total Running Wild

Hi. A shell scripting newbie here. I am trying to write a script that will create a running total of Sales, and increment a counter for each Sales entry, but when I executed the program it never stopped.

Code:
counter=0
Sales=0
echo "enter sales price"
read sales
while [ "$sales" != "" ]
do
let counter=counter+1
let total=total+sales
echo $counter
echo $total
done

I'd appreciate any help to get this script straightened out.
TIA
# 2  
Old 03-08-2010
Try putting these two lines inside the while loop:

Code:
echo "enter sales price"
read sales

# 3  
Old 03-08-2010
Running total running wild

Thank you that did it.

Now my next problem. I enter a number, but the script is not totaling. It just outputs the number that I entered.

What did I leave out?
TIA
# 4  
Old 03-08-2010
You have to use $total, $count on the right side of the '=' so that the value of those variables are used.

e.g total=$total + $sales
# 5  
Old 03-08-2010
I tried this, with no luck.
Code:
let counter=$counter+1
let total=$total+$sales

# 6  
Old 03-08-2010
Make sure that there is no extra space in the expression:

Code:
  let count=$count+1

not
Code:
  let count=$count + 1

What is the error msg that you are getting? Also, define 'sales' not 'Sales'.

It seems to work on my system. I'm using ksh.
# 7  
Old 03-08-2010
Taking into account the earlier postings and error messages you will have seen during testing, by now your shell script should look something vaguely like this example:

Code:
#!/bin/ksh
counter=0
sales=0
total=0
while [ "$sales""X" != "X" ]
do
     echo "Enter sales price: \c" ; read sales
     let counter=$counter+1
     let total=$total+$sales
     echo "Counter : $counter"
     echo "Running total: $total"
done


The first line (the shebang line) states which shell we are using.

Indentation adds to readability.

We have appended an arbitary character "X" to "$sales" in the while statement to avoid the syntax error when we finally don't enter a value and want to exit the loop. (There are other ways of achieving the same effect).

For completeness and readablility we initialise $total .

We can extend the "echo" statements to improve the layout on the screen and to provide more information about what the output means. The "\c" in the first echo stops echo outputting a newline character such that the user enters the answer on the same line as the question.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Why script is running sometimes and not running sometimes?

Hi, I have a script which does couple of database connection and run some SELECT queries to get some output in the file. I am surprised to see :eek: that when i run my script some times it gives the desired out put and sometimes it shows some error :confused: . Suppose if i execute it say... (3 Replies)
Discussion started by: Sharma331
3 Replies

2. Shell Programming and Scripting

How to know how many files are running.?

Hi friends I want to know can we check how many php files are running currently or can we know that a file is running or not. Maine issue is that i am running two or three files, there are lots of code on them, each files takes 20 minutes to complete. i want to know that first file is... (7 Replies)
Discussion started by: sanjay833i
7 Replies

3. Shell Programming and Scripting

Cron job running for some days and is not running for some days

Hi.. i have written a shell script and made this script to run on every day night 11: 55 pm using a cron job. This cron job running for some days and is not running for some day. but i need this script to run every day night. Please help me. Here is the cron tab entries, 55 23 * * *... (1 Reply)
Discussion started by: vidhyaS
1 Replies

4. Shell Programming and Scripting

Print available running instance out of total

Hello. I have a status command in AIX box, which provides output as below: $ status You are running the application on pegasus2 ----Program Name------|--Avail / Total---------| MQ | 1/2 | ORACLE | 10/10 | TMADMIN ... (3 Replies)
Discussion started by: panchpan
3 Replies

5. Shell Programming and Scripting

Calculate total space, total used space and total free space in filesystem names matching keyword

Good afternoon! Im new at scripting and Im trying to write a script to calculate total space, total used space and total free space in filesystem names matching a keyword (in this one we will use keyword virginia). Please dont be mean or harsh, like I said Im new and trying my best. Scripting... (4 Replies)
Discussion started by: bigben1220
4 Replies

6. Solaris

Running from Shell Vs running from RC script

Hi, i have a script which need to do behave differently when run as a startup process from init.d/ rc2.d script and when run manually from shell. How do i distinguish whether my script is run by init process or by shell?? Will the command /proc/$$/psinfo | grep "myscript" work well???... (2 Replies)
Discussion started by: vickylife
2 Replies

7. Shell Programming and Scripting

Running Total

HPUX 11i v2 #!/bin/sh Hi all. I have a space delimited flat file of about 9000 lines. I would like to get a running total of field 3 to the variable $TOTAL. Field 3 can be formatted as listed.... $ 0.00 $2804.15 <$ 4.14> (negative) Any ideas are most appreciated!!!! TIA!! (9 Replies)
Discussion started by: lyoncc
9 Replies

8. UNIX for Dummies Questions & Answers

grep running total/ final total across multiple files

Ok, another fun hiccup in my UNIX learning curve. I am trying to count the number of occurrences of an IP address across multiple files named example.hits. I can extract the number of occurrences from the files individually but when you use grep -c with multiple files you get the output similar to... (5 Replies)
Discussion started by: MrAd
5 Replies

9. UNIX for Advanced & Expert Users

How to prevent job1 from running while job2 is running..

Hi, Please I need your expert advise on how to prevent/lock from execution job1 while job2 is still running in Unix... THanks:) (3 Replies)
Discussion started by: tikang
3 Replies
Login or Register to Ask a Question