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



RAM one table colums a1,a2,a3,a4 respective values 2,4,7,8 KRISH one table colums a1,a2,a3,a4 resp..

Answer / 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

More Shell Script Interview Questions

What are the four fundamental components of every file system on linux?

0 Answers  


What does echo $0 do?

0 Answers  


How many prompts are available in a UNIX system?

1 Answers  


I have 2 files and I want to print the records which are common to both.

0 Answers  


What are the Different types of shells?

5 Answers  






Is shell a part of kernel?

0 Answers  


what is the difference between sh & bash shell?

1 Answers  


What does debug script mean?

0 Answers  


whta is the use of "exec" command?

1 Answers  


What is basename in shell script?

0 Answers  


What are script files?

0 Answers  


What is the difference between a 'thread' and a 'process'?

3 Answers  


Categories