Re: HELP! perl script not working

Anton Blanchard ((no email))
Wed, 21 Feb 1996 17:21:42 +1100 (EST)

> The following is a perl script I obtained to implement a web counter. It
> works at my works web server, and in my home directory at work I can run the
> script and get the desired results. However, when I run the script from the
> command prompt on ftoomsh, I get a 'command not found' error. If I then type
> "perl number.xbm" it works fine.

1 check #!/usr/local/bin/perl actual points to where it should (it does)

2 chmod 700 number.xbm (it is)

3 ./number.xbm

My guess is the current directory ( . ) is not in your path.

Anton