how did u debugging in unix/ linux platform ??( project
Related)
Answers were Sorted based on User's Feedback
Answer / santana20142003
If it is a shell script use #!/bin/ksh -x
| Is This Answer Correct ? | 4 Yes | 0 No |
For gdb in linux/unix Gnu Debugger is available. Please
read the mannuals for gdb.
man gdb
| Is This Answer Correct ? | 1 Yes | 0 No |
What are the advantages of bash over all other shells?
is this growing field and what is average package in this?
write a shell script to identify the given string is palindrome or not?
17 Answers CTS, HP, IBM, InfoEst, Wipro,
How to print pid of the current shell?
How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }
I want to read all input to the command from file1 direct all output to file2 and error to file 3, how can I achieve this?
What is a shell? · Types of shell · what is shell scripting?
how can you execute the shell scripts?
How do I open the shell in cmd?
If one dont know how to create a script then how he/she can use the QTP?
Is shell script a programming language?
Rewrite the command to print the sentence and convert the variable to plural: echo “i like $variable”.