What is the basic difference you find between a shell
script and perl?
Answer Posted / deepak kumar pandey
Shell script is platform(OS) only for Unix
flavour,dependent whereas perl is OS independent
| Is This Answer Correct ? | 19 Yes | 2 No |
Post New Answer View All Answers
How important is shell scripting?
What does $@ mean in shell?
What does .sh file contain?
How to debug the problems encountered in the shell script/program?
How will you find the 99th line of a file using only tail and head command?
What is the command to find out users on the system?
What language is bash written in?
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 does ls command work?
What is ms powershell?
Why are there shells on the beach?
What is the purpose of scripting?
Why are shell scripts used?
What is bash command used for?
What is a file basename?