countersync wrote: > On Monday 29 April 2002 10:48, you wrote: > >>>Run the script line by line, that will show which specific >>>command generates >>>the error. The email that line here and people will be able >>>to help you >>>out. >> >>How do I get the script to run line-after-line? > > You either add echo's after each command and see where they stop showing > up, or run manually line by line. There may/may not be a better way. > >
you can also do bash -x script should do the right thing. prints the command and after that the output of the command. very useful :-) gerd
