jshock wrote:

@source = qw(
        "/Users/joe/Documents/Palm/"
        "/Users/joe/Library/Application\ Support/AddressBook"
        "/Users/joe/Library/Application\ Support/iCal"
        "/Users/joe/Library/Mail"
);

That code does probably not do what you want. Besides the space problem, the elements include the quote characters. Solution: Drop the qw// operator.

    @source = (
        '/Users/joe/Documents/Palm/',
        '/Users/joe/Library/Application Support/AddressBook',
        '/Users/joe/Library/Application Support/iCal',
        '/Users/joe/Library/Mail',
    );

--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to