What is a shell script in windows?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about stdin, stdout and stderr?
What is the first line of a shell script called?
How can you find out how long the system has been running?
What can you do with powershell?
When you login to a c shell, which script would be run first?
Explain about the slow execution speed of shells?
How to get script name inside a script?
Is powershell a language?
wats the she bang statment with syntax?
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 batch file programming?
Give some situations where typing error can destroy a program?