Sponsored Content
Full Discussion: Summary using awk
Top Forums Shell Programming and Scripting Summary using awk Post 302387031 by ahmad.diab on Thursday 14th of January 2010 10:02:16 AM
Old 01-14-2010
strange it work with me.
try below

Code:
while true
do
echo -n "Title = "
read Title
echo -n "Author = "
read Author
if grep $Title database.txt | grep $Author  &>/dev/null
then
echo $Author
else
echo "Book Does not exist"
fi
done



---------- Post updated at 17:02 ---------- Previous update was at 16:56 ----------

or try this :-

Code:
while true
do
echo -n "Title = "
read Title
echo -n "Author = "
read Author
nawk -F: '/'$Title'/ &&/'$Author'/' infile.txt &>/dev/null
if [ $? -eq 0 ]
then
echo $Author
else
echo "Book Does not exist"
fi
done


Last edited by ahmad.diab; 01-14-2010 at 11:19 AM..
 

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

System Summary Tools

Are there any system sumary tools for Linux? What are some good ones for Solaris and HP-Ux? (2 Replies)
Discussion started by: vader
2 Replies

2. UNIX for Dummies Questions & Answers

Directory Summary Command

Is there a unix command to provides the number of files in a directory? (2 Replies)
Discussion started by: rbarlow
2 Replies

3. Shell Programming and Scripting

summary line help

$ cat file a:12:56:12 b:23:12:23 d:32:24:12 c:90:12:24 required output: a:12:56:12 b:23:12:23 d:32:24:12 c:90:12:24 t:157:104:71 t line is the total line, which will be the last line in the output. Please help. I tried this: (4 Replies)
Discussion started by: uwork72
4 Replies

4. Shell Programming and Scripting

Using awk to create a summary of a structured file

I am trying to use awk to create a summary of a structured file. Here is what it looks like: (random text) H1 H2 H3 H4 44 78 99 30 31 -- 32 21 12 33 55 21 I'd like to be able to specify a column, say H2, and then have information about that column printed. ... (4 Replies)
Discussion started by: afulldevnull
4 Replies

5. Shell Programming and Scripting

Generating summary data (use awk?)

I have a data file similar to this (but many millions of lines long). You can assume that it is totally unsorted but has no duplicate rows. Date ,Tool_Type ,Tool_ID ,Time_Used 3/13/2014,Screwdriver,Screwdriver02, 6 3/13/2014,Screwdriver,Screwdriver02,20... (2 Replies)
Discussion started by: Michael Stora
2 Replies

6. Shell Programming and Scripting

Files summary using awk based on index key

Hello , I have several files which are looking similar to : file01.txt keyA001 350 X string001 value001 keyA001 450 X string002 value007 keyA001 454 X string002 value004 keyA001 500 X string003 value005 keyA001 255 X string004 value006 keyA001 388 X string005 value008 keyA001 1278 X... (4 Replies)
Discussion started by: alex2005
4 Replies
All times are GMT -4. The time now is 06:08 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy