Re: Perl Help Please

2002-11-26 Thread John Delacour
At 2:05 pm -0800 25/11/02, Chuck Taylor wrote: After doing some debugging this is what I thought the Perl script should look like. #!/usr/bin/perl /System/Library/CoreServices/Classic Startup.app/Contents/Resources/';./cdTruBlueEnvironment; I made sure it was executable using chmod +X but

Re: Perl Help Please

2002-11-25 Thread Troy Davis
Hi Chuck, Try this: --- #!/usr/bin/perl my $status = `open -a /System/Library/CoreServices/Classic Startup.app`; --- I don't know what this means, though: ../cdTruBlueEnvironment; Are you trying to cd into that dir? Cheers, Troy This Perl newbie needs a little advanced help. I'm trying a

RE: Perl Help Please

2002-11-25 Thread Chuck Taylor
- From: Troy Davis [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 2:23 PM To: Chuck Taylor Cc: [EMAIL PROTECTED] Subject: Re: Perl Help Please Hi Chuck, Try this: --- #!/usr/bin/perl my $status = `open -a /System/Library/CoreServices/Classic Startup.app`; --- I don't know what