Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Retrieve email information from Address Book' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Retrieve email information from Address Book
Authored by: taxi on Jun 11, '04 11:02:16PM

Or, you could download contacts and type the following into your Terminal (after installing!):

~ $: contacts -l -f "%n %e"

Note that you must have the -l line, else the names and emails will be truncated.

The big advantage of this is that you can pipe it through a command that would only grab your contacts that have an email address:

~ $ contacts -l -f "%n %e" | grep @

Or look in the man page to find other options.

[ Reply to This | # ]