How to enable the shell to know what program should be run
to interpret the script?
Answer Posted / guest
by Using command ksh/csh
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does .sh file contain?
Explain about shebang?
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); }
Why is the use of shell script?
What is mac default shell?
What is the conditional statement in shell scripting?
What lives in a shell?
Explain about gui scripting?
What is console line?
What are script files?
Explain about sourcing commands?
What is sh in shell script?
How to print all array elements and their respective indexes?
What does chmod do?
How to set an array in linux?