What is option in shell script?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 4 basics of OOP?
What is the command for " how many shell is running in your system or how many shell supported by your system " ?.
What is a shell in operating system?
What is scripting used for?
I want to monitor a continuously updating log file, what command can be used to most efficiently achieve this?
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); }
What is the best shell scripting language?
What is the difference between break and continue commands?
what is the difference between sh & bash shell?
HOW TO CREATE 10 USERS IN UNIX(HP-UX) USING SHELL SHELL SCRIPT?
What is the use of "shift" command in passing parameters?
whta is the use of "exec" command?