Re: How can I know the path to exectue perl

2001-08-08 Thread Chris Garaffa
Try whereis perl On Wednesday, August 8, 2001, at 09:04 PM, Li Kehai wrote: > I mean, how to decide the first line. > > #!/usr/local/bin/perl > > or #!/usr/bin/perl > > Thanks in advance! -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How can I know the path to exectue perl

2001-08-08 Thread Brett W. McCoy
On Wed, 8 Aug 2001, Li Kehai wrote: > I mean, how to decide the first line. > > #!/usr/local/bin/perl > > or #!/usr/bin/perl Assuming you are on something resembling Unix, try this at the command-line: which perl This will tell you the full path to your Perl executable and will be what goes af

How can I know the path to exectue perl

2001-08-08 Thread Li Kehai
I mean, how to decide the first line. #!/usr/local/bin/perl or #!/usr/bin/perl Thanks in advance!