by Joel Reicher <joel@[EMAIL PROTECTED]
>
Mar 10, 2008 at 07:19 AM
happytoday <ehabaziz2001@[EMAIL PROTECTED]
> writes:
> I am piping sed command to an awk program but I got that error
> message :
> # sed -f namestate list | bystate
> ksh: bystate: not found
> #
>
> Though bystate is a chmod 777 and contain that commands :
The shell is telling you bystate hasn't been found, not that execute
permission is denied.
It most probably isn't in your path (and shouldn't be if it's just the
current directory). Try ./bystate
Cheers,
- Joel