Nov 1, 2007 #1 mdarsot Instructor Apr 13, 2006 86 CA I am trying to run a script which is hanging. When i exit the script it says incomplete record. Is there way i can run this script so that it tells me exactly which records is bad out of whole file.
I am trying to run a script which is hanging. When i exit the script it says incomplete record. Is there way i can run this script so that it tells me exactly which records is bad out of whole file.
Nov 1, 2007 #2 p5wizard IS-IT--Management Apr 18, 2005 3,165 BE It might help if you can show the script... HTH, p5wizard Upvote 0 Downvote
Nov 1, 2007 #3 Einstein47 Programmer Nov 29, 2001 737 US if it is korn shell, you could do this: Code: ksh -xv scriptname The x means debug, and the v is verbose - the output it will fly by really fast, so you might want to redirect the output to another file. Einstein47 “Evil abounds when good men do nothing.“ - Nelson R. [[]Starbase47.com] Upvote 0 Downvote
if it is korn shell, you could do this: Code: ksh -xv scriptname The x means debug, and the v is verbose - the output it will fly by really fast, so you might want to redirect the output to another file. Einstein47 “Evil abounds when good men do nothing.“ - Nelson R. [[]Starbase47.com]