defination of mapfile in winrunner?
No Answer is Posted For this Question
Be the First to Post Answer
What are the zombie processes?
How do scripts work?
Is shell scripting difficult?
Where is bash history?
If one dont know how to create a script then how he/she can use the QTP?
State the advantages of shell scripting?
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); }
When you login to a c shell, which script would be run first?
Determine the output of the following command: [ -z “” ] && echo 0 || echo 1
Why should we use shell scripts?
What is c in shell script?
How to sort a result of Ls -l command based on columns. Ex. i want to sort 5th column from output of ls -l command.