Mac OS: Antivirus utilities


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS Mac OS: Antivirus utilities
# 1  
Old 11-21-2008
Mac OS: Antivirus utilities

Learn about antivirus utilities available for the Mac OS.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Solaris

Antivirus for Solaris 8

Hi- I am looking for a best open source antivirus software for solaris other than clamav. We have been using clamav but it doesnot work on old solaris 8 systems..compiling the clamav and installing it on old solaris 8 systems resulted in system crash.Our business don't have any plan for OS upgrade... (3 Replies)
Discussion started by: lakshmanknr
3 Replies

2. Windows & DOS: Issues & Discussions

Issue while installing antivirus

I downloaded a trial version Kaspersky PURE 3.0.13.0.2.558 While installing it was showing a message that :" The foll. is a problem for proper working of this antivurus Norton Internet ..../ Norton Anti-virus / Norton ...." The message was something like this. I searched for Norton in "search... (4 Replies)
Discussion started by: ravisingh
4 Replies

3. Red Hat

Antivirus

I have fedora 15 lovelock. I need an antivirus for internet security. Which will be the best.. Plz suggest. (11 Replies)
Discussion started by: amisubha
11 Replies

4. Cybersecurity

Best Antivirus :

There are number of antivirus available in market.The most of the persons get confused when they try to choose.So please direct us and guide us here the best way to choose antivirus for different purposes and works. (4 Replies)
Discussion started by: Klusner
4 Replies

5. Linux

Linux Antivirus

Hi, Can anyone suggest the best free antivirus for Linux? I'm using RED HAT 9.0 & want to install antivirus for it.... So if anyone could suggest anything, that would be great. (5 Replies)
Discussion started by: billcrosby
5 Replies

6. UNIX for Dummies Questions & Answers

open source antivirus

Hello What is the best open source anti virus? Thanks (4 Replies)
Discussion started by: mohammadmahdi
4 Replies
Login or Register to Ask a Question
Mac::AETE::App(3)					User Contributed Perl Documentation					 Mac::AETE::App(3)

NAME
Mac::AETE::App - reads the Macintosh Apple event dictionary from an application. SYNOPSIS
use Mac::AETE::App; use Mac::AETE::Format::Dictionary; $app = App->new("My Application"); $formatter = Dictionary->new; $app->set_format($formatter); $app->read; $app->write; DESCRIPTION
The App module simplifies reading the Apple event dictionary from an application. It will launch the application if necessary to obtain the dictionary. Methods new Example: ($name is the name of the application.) use Mac::AETE::App; use Mac::AETE::Format::Dictionary; $app = App->new($aete_handle, $name); read (Inherited from Mac::AETE::Parser.) Reads the data contained in the AETE resource or handle. Example: $app->read; set_format (Inherited from Mac::AETE::Parser.) Sets the output formatter used during by the 'write' subroutine. Example: $formatter = Dictionary->new; $app->set_format($formatter); copy (Inherited from Mac::AETE::Parser.) Copies all suites from one Parser object into another. Example: $aete2 = Parser->new($aete_handle2, $another_name); $app->copy($aete2); copies the suites from $aete2 into $aete. merge (Inherited from Mac::AETE::Parser.) Merges suites from one Parser object into another. Only the suites that exist in both objects will be replaced. Example: $aete3 = Parser->new($aete_handle2, $another_name); $app->merge($aete3); write (Inherited from Mac::AETE::Parser.) Prints the contents of the AETE or AEUT resource using the current formatter. $app->write; INHERITANCE
Inherits from Mac::AETE::Parser. AUTHOR
David Schooley <dcschooley@mediaone.net> perl v5.10.0 2005-05-16 Mac::AETE::App(3)