Shell Script Address Book

Joined
Dec 16, 2006
Messages
33
Reaction score
0
Points
6
Can anyone help a scripting Noobie with shell script I'm trying to compile? :[

He wants to create a script which is basically an address book, all his data in in a text file (I think its in csv format, so we'll assusme it is).

He basically wants to enter the contacts surname (which is the data in the 1st culumn of the file) and he wants the script then to check to see if the 2nd column says either 'Business' or 'Personal' and then echo the fields in the remaining coulumns depending what was fould in column 2, so for example if 'Jones' was inputted and column 2 said 'Personal' the output would be:

Code:
Surname:  Jones
Forename: Ben
Birthday: 03/09
Mobile Number: 07000 000 000
Email: ben.jones(at)email.com
Address: 2 Any Street, Anytown, Anyshire, AN1 2AN

But if column 2 said 'Business' it would be:

Code:
Surname:  Jones
Forename: Ben
Position: Manager
Business Number: 07000 000 000
Business Email: ben.jones(at)company.com
Business Address: 2 Any Street, Anytown, Anyshire, AN1 2AN
I'm guessing awk or grep (or both) must be used?

Any help would be gratefully appreciated :)
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top