What is mac default shell?
No Answer is Posted For this Question
Be the First to Post Answer
What is a shell? · Types of shell · what is shell scripting?
Write down the syntax for all the loops in shell scripting.
What are the advantages of using shell scripts?
Is shell a part of kernel?
What are the different types of variables used in shell script?
I have 2 files and I want to print the records which are common to both.
What is the best scripting language?
one folder contains lot of students name but I want to fetch hello with every student name individually using shell script
How will you copy a file from one machine to other?
What is difference between shell and bash scripting?
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); }
whta is the use of "exec" command?