RAM one table colums a1,a2,a3,a4 respective values 2,4,7,8
KRISH one table colums a1,a2,a3,a4 respective values 3,4,6,9
IN RAM & KRISH a4 column if comparing values RAM A4 - KRISH
A4 ( 8-9 =1 THEN print 5 or (RAM) a4 value 10 KRISH a4
values 2 then 10 -2 =8 print 5*8=40 or diff 5 print same
Answer Posted / hemanth
x=`cut -f4 ram.txt`
y=`cut -f5 krish.txt`
z=`expr x-y`
if (z==5)
then echo 5
else
w= `expr 5*z`
echo $w
fi
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How to use arguments in a script?
What does path stand for?
Given a file find the count of lines containing the word "abc".
Explore about environment variables?
What command needs to be used to take the backup?
What is the default shell of solaris?
What does $@ mean in shell?
Write a shell script to get current date, time, user name and current working directory.
How to redirect both standard output and standard error to the same location?
Write a shell script that adds two numbers if provided as the command line argument and if the two numbers are not entered throws an error message.
What is wc in shell script?
What does $1 mean in bash?
How can I set the default rwx permission to all users on every file which is created in the current shell?
What is $1 in shell scripting?
Give some situations where typing error can destroy a program?