In the first line of the script:
#!/bin/sh
Try changing it to:
#!/bin/sh -x
and run the script again.
This will run the bourne shell in its debugging mode and this debugging
output might give you a better idea of which line of your startup script is
causing the "No such file or directory" error that you're receiving.
- Will
Strife Daemonkin
----- Original Message -----
From: "Brian Merkley" <[EMAIL PROTECTED]>
To: "ArKHaM" <[EMAIL PROTECTED]>
Cc: <[email protected]>
Sent: Friday, January 04, 2002 7:12 PM
Subject: Re: Clueless
> I had set port number in startup.dat file but I also just changed port
> number in comm.c as well. But I still get the same error:
> bash: ./startup: No such file or directory
>
> I tried ./startup &, ./startup 6565 &, ./startup.dat &, and ./startup.dat
> 6565 &. But all of these give me the same error.
>
> Any other ideas?
>