CSH Calculator Script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting CSH Calculator Script
# 8  
Old 11-14-2014
Thanks to all who helped me with it. I think I've got it working. On to the next challenge Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell Script Calculator

Hello, I have to make a calculator in shell script. But I get this error. Can someone help me please? c.sh: 3: c.sh: i: not found That's my code. ========================================================================== #Calculator i = "yes" while do echo What operation... (2 Replies)
Discussion started by: KJN
2 Replies

2. Shell Programming and Scripting

Pls help with script made a calculator

Hello, I'm in need with a little help for my script please this is the brief i need to complete which I haven't been able to do: On option 7 stop the calculator The calculator will keep running until option 7 is chosen. Any other option than 1-7 will generate an error message. Pls any help... (1 Reply)
Discussion started by: linuxepicuser
1 Replies

3. Shell Programming and Scripting

chmod calculator script

so just spit ballin here, i was wondering if anybody knew how to make a chmod calculator script. basically go to this website http://mistupid.com/internet/chmod.htm i would like something like this that i can use in a terminal tho. so like i run the scrip and it ask for owner what... (1 Reply)
Discussion started by: hookitup
1 Replies

4. UNIX for Dummies Questions & Answers

Csh script

Hey all, I've only just started using UNIX coding on my Masters project, so am still learning!! The script I've been writing is literally just for me to get used to writing it and seeing what I can do with some data I've been given. I'm trying to write a script, where the penultimate line... (2 Replies)
Discussion started by: southernlight
2 Replies

5. Shell Programming and Scripting

csh script help

Hey I am brand new to this forum and scripting. I have several documents (1000+) all formated exactly the same. Each document contains 97 lines. I want to pull 3 lines from the documents to populate a file. These 3 lines are line number 9, 24, and 58. Ok my questions: Instead of using... (3 Replies)
Discussion started by: david6789
3 Replies

6. Homework & Coursework Questions

Problem with calculator script

I'm having some trouble implementing a basic calculator using command line options. The script is supposed to take (multiple) arguments -a,-d,-m,-s for addition, multiplication, division, and subtraction. I'm pretty sure I know how to parse through the options with getopt(), but I have no idea... (17 Replies)
Discussion started by: zkapopou
17 Replies

7. Shell Programming and Scripting

how to source csh script in tcl script

i have atcl script and i want to source a csh script to reflect changes done by script ........ Please help....... (0 Replies)
Discussion started by: paragarora47
0 Replies

8. Shell Programming and Scripting

Help with csh script

Ok I asked something similar earlier with no response, so maybe I didn't word it correctly. I'm new at this, so thank you for your help. Here's what I have right now. ---------------------------- > cat MySourceFile #!/bin/csh echo "Please Enter Value For My_Env_Var:" set answer = $< ... (1 Reply)
Discussion started by: MMorrison
1 Replies

9. Shell Programming and Scripting

Simple CSH script

Hi everyone, I have never wrote script in csh before, but I need to add only few lines to an existing one. I tried to use the bash standard syntax, and it did not work. So, I attempted to use csh syntax, and it is not working. Can someone help please: switch ( $Return_Code ) case 0:... (3 Replies)
Discussion started by: nimo
3 Replies

10. Shell Programming and Scripting

csh failing to call an 2 embedded csh script

I have an extraordinary problem with a csh script.....(feel free to berate the use of this but I'm modifying an existing bunch of them) Anyway, I have a master csh script which in turn calls a second csh script. This second csh script is below. Within this second script are two compiled C++... (1 Reply)
Discussion started by: pollsizer
1 Replies
Login or Register to Ask a Question
EV(1)							      General Commands Manual							     EV(1)

NAME
       ev - evaluate expressions

SYNOPSIS
       ev 'expr' ..

DESCRIPTION
       Ev  evaluates  expressions  given  on the command line, and sends the results to the standard output, one per line.  An expression contains
       real numbers, function calls, and the following operators:

	    +  -  *  /	^

       Operators are evaluated left to right, except '^', which is right associative.  Powers have  the  highest  precedence;  multiplication  and
       division  are  evaluated  before  addition  and subtraction.  Expressions can be grouped with parentheses.  All values are double precision
       real.

       The following library of functions is available:

       if(cond, then, else)
		 if cond is greater than zero, then is evaluated, otherwise else is evaluated.

       select(N, a1, a2, ..)
		 return aN (N is rounded to the nearest integer).  If N is zero, the number of available arguments is returned.

       rand(x)	 compute a random number between 0 and 1 based on x.

       floor(x)  return largest integer not greater than x.

       ceil(x)	 return smallest integer not less than x.

       sqrt(x)	 return square root of x.

       exp(x)	 compute e to the power of x (e approx = 2.718281828).

       log(x)	 compute the logarithm of x to the base e.

       log10(x)  compute the logarithm of x to the base 10.

       sin(x), cos(x), tan(x)
		 trigonometric functions.

       asin(x), acos(x), atan(x)
		 inverse trigonometric functions.

       atan2(y, x)
		 inverse tangent of y/x (range -pi to pi).

EXAMPLE
       To pass the square root of two and the sine of .5 to a program:

	 program `ev 'sqrt(2)' 'sin(.5)'`

AUTHOR
       Greg Ward

SEE ALSO
       icalc(1), rcalc(1)

RADIANCE							     10/28/96								     EV(1)