follow the tutorial, but an understanding of such commands will aid in understanding the concepts being applied.
This address book and contact manager will have the following characteristics:
- be able to search and view records whenever you need them, from the command line and a text editor.
- perfectly accessible over a slow text-only network line
- be able to cut and paste addresses and contact information from the Web, email, and any other applications
- have no concept of "required fields" -- each record can contain as much, or as little, information as you need to have.
- can be taken with you and used on any Linux or Unix machine
Creating the Addresses file
The first step is to make a new file (call it something like "addresses"), you can do so by typing:
nano addressesNow, you can begin adding records to it.
Records have to be delimited somehow; I would suggest putting ### on a line by itself between each set of contact information. Format the records themselves however you like, with name and address and whatever information you have. I used to keep a completely free-form contacts file, so that each record contained completely unformatted data in whatever way that I happened to get it, but this practice quickly shows its limitations -- I've found
that it helps immensely to label certain fields, such as telephone number and email address. I use this format:
NameAs an example, a few records might look like this:
Address
Phone: phone number
Fax: fax number
Email: email address
Comments: additional information
---------------------------------------------------Searching, browsing, and exporting records
Acme Industries, Inc.
4211 E Broadway
New York, NY 10026
Phone: (212) 555-1032
Fax: (212) 555-1038
Email: acme@example.net
###
capri pizza
Phone: 555-8250
###
jane smith
Phone: 555-3104
Email: jsmith@example.nyu.edu
Comments: friend of susan's
------------------------------------------------
Create the following script to make searching for a contact easy.
#!/bin/shName the script "contact" and make it executable (chmod +x contact). Make sure that your Address file and your contact script are in the same directory or place the script somewhere within your path.
awk 'BEGIN { RS = "###" } /'$*'/' ~/addresses
At the command line simply type:
contact jane
or
./contact jane
This should bring up Jane Smith's contact information as found in the text file. You can search using any of the information in the text file. Here are some examples:
contact nyu.eduwill give you all contacts with a 'nyu.edu' email address.
contact 90028will give you all the contacts living in the that zip code. You search options are limitless.
More Advanced Searching using grep and awk
fgrep outputs single lines of the file that match a string you give, and is good for when you just want to see if you have such-and-such a record in your file. Use the -i option to do a case-insensitive search -- for instance, here's how to see if you have contact information for Acme
Industries:
Should display:
fgrep -i 'acme industries' addresses
The output gave the name -- but you want the phone number too. Output the search with a few lines after the match with the -A option:
Acme Industries, Inc.
Which will display the next 5 lines following the name 'acme industries', like this:
fgrep -i -A5 'acme industries' addresses
Acme Industries, Inc.And here's where using labels really pays off. When you need, say, all the email addresses that have "nyu.edu" in them, you can find them with a plain grep command:
4211 E Broadway
New York, NY 10026
Phone: (212) 555-1032
Fax: (212) 555-1038
Email: acme@example.net
$ grep '^Email:' addresses | fgrep 'nyu.edu'Then you can simply copy and paste the listed emails into your email client.
Harvesting the actual addresses themselves is also a trivial matter:
You can use awk to output entire records containing a particular match. The simplest way is to change the awk record separator, RS, to ### and then enclose the pattern to match in slashes. For example, here's how to export all records containing the string "acme" somewhere in the record:
$ grep '^Email:' addresses|egrep -o '[^ ]+$'
awk 'BEGIN { RS = "###" } /acme/' addressesand you will get:
Acme Industries, Inc.The contact script we first used in this tutorial is based off of this awk command.
4211 E Broadway
New York, NY 10026
Phone: (212) 555-1032
Fax: (212) 555-1038
Email: acme@example.net
Because the file has labels, you can limit your search to them. For example, you can search for all email addresses that have "smith" in them, and output the entire records:
awk 'BEGIN { RS = "###"; FS = "Email: " } ($2 ~ "smith") { print $0 }' addressesYou can use the same awk pattern to do any number of things. For instance, in conjunction with the grep examples above you can output all the email addresses in records that have "friend" in the comment field:
$ awk 'BEGIN { RS = "###"; FS = "Comments: " } ($2 ~ "friend") { print }' addresses | grep '^Email:' | egrep -o '[^ ]+$'Adding and importing records
Adding records to your contacts file is easy. The file doesn't need to be sorted, so append new records by either editing the file in nano or using redirection on the command line:
cat >> addressesthen type in your new contact, like this:
###
new name
Cell: 801-123-4567
This will add the 'new name' to the bottom of your addresses file.
Rarely do I actually type out any new contact information myself -- that only happens when I'm transcribing something from paper, or when I'm getting a number from someone on the phone. Nine times out of 10 I'm just cutting and pasting the text from the Web or email into an editor window that has
the contacts file open. It's painless and fast -- there are no forms to have to fill out for each part of the record. But you have to keep two things in mind: separate the records with hash marks, and insert labels for numbers, email, and comment fields, if you want to use them.
If you already have a set of address records formatted some other way, awk can import it so that it's in the right format.
Let's say you have a file named address.txt where all the records are kept one to a line in this common format:
lastname,firstname,address,city,state,zip,phone,email
Here's an awk one-liner to take that input and spit it out into the bottom of the addresses file, in just the right format:
$ awk 'BEGIN { FS = "," } { print "\n###\n\n" $2, $1, "\n" $3 "\n" $4 ", " $5, $6, "\nPhone: " $7, "\nEmail: " $8 }' address.txt >> addressesENJOY!
Disclaimer:
This tutorial is a re-publication from an article from linux.com a few years back with some slight modifications from me. I'm unable to find the original article to link. If anyone knows who originally published this please let me know and I'll make the necessary reference.
2 comments:
The original article on this approach was here. It has some potentially helpful comments.
Cheers!
ST
Thank you Surly for that link. I want to give credit where credit is due.
Post a Comment