What is shell and shell script?
No Answer is Posted For this Question
Be the First to Post Answer
What are the default permissions of a file when it is created?
What is batch file programming?
I want to read all input to the command from file1 direct all output to file2 and error to file 3, how can I 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); }
How do I open a jshell in cmd?
How to write an Auto scripting for deleting old files using shell script and made a cron job to run on daily basis
What shell is bin sh?
What is c in shell script?
What language is shell scripting?
What is bash eval?
What is an sh file?
Differentiate between ‘ and ” quotes.