![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to debug a C++ code | ahjiefreak | High Level Programming | 0 | 04-06-2008 07:46 AM |
| How to debug the awk script | chella | Shell Programming and Scripting | 2 | 11-08-2007 04:51 PM |
| FTP debug logging | untamed | HP-UX | 1 | 10-02-2007 06:34 AM |
| how to debug | ramneek | High Level Programming | 1 | 09-19-2005 03:35 AM |
| DOS Debug for linux | KrazyGuyPaul | UNIX for Dummies Questions & Answers | 2 | 06-24-2003 08:47 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
what's the best way for debugging in aix 4.3? i have this old aix 4.3 with unknown application that my new company still uses. they want me to complete a script that was working before but the application was very old and software company don't exist anymore. the script monitor the maintenance of the applications (with db2 7). the application has no more code and cannot be recompiled, that's why it cannot be upgraded to aix 5.
thanks, itik |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
the script was written in kornshell.
|
|
#3
|
|||
|
|||
|
Insert the following 2 lines to your korn shell script right after "#!/bin/ksh":
set -x PS4='[Line $LINENO]: ' This will turn trace execution. When you run the script, you will see the line number that is being executed and the command the script is about to run. |
|||
| Google The UNIX and Linux Forums |