What is wc in shell script?
No Answer is Posted For this Question
Be the First to Post Answer
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 use of "$#" in shell scripting?
What is wc in shell script?
What is the use of "test" command?
What is shell terminal?
Why we are writting shell scripts? Plz if possible explain it briefly.
What is the lifespan of a variable inside a shell script?
c program which accept one argument as a directory name and prints all the file name along with its inode number and total count of the file in directory
Why is used in shell scripting?
What is the first line of a shell script called?
How to write an Auto scripting for deleting old files using shell script and made a cron job to run on daily basis
How to get the 3rd element/column from each line from a file?