What language is shell scripting?
No Answer is Posted For this Question
Be the First to Post Answer
How do I run a .sh file on mac?
What makes c shell a more preferable option than the bourne shell?
What is the use of a shebang line?
Print the 10th line without using tail and head command.
Is it possible to substitute "ls" command in the place of "echo" command?
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 default shell of solaris?
what do u mean by $#,$* in unix programming?
How many prompts are available in a UNIX system?
Explain about the slow execution speed of shells?
How do we delete all blank lines in a file?
How can the contents of a file inside jar be read without extracting in a shell script?