what is this line in the shell script do ?#!/bin/ksh
Answer Posted / venkatgiri t
/bin/ksh denotes the place where all the commands source
code is stored. Hence when ever we run command, the
commands referred from their.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
How do you create a shortcut in linux?
Is powershell a bash?
Which scripting language is best for automation?
Is shell scripting a language?
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 default ubuntu terminal?
What is shell application?
What is a program shell?
What is shell geeksforgeeks?
How many fields are present in a crontab file and what does each field specify?
How to debug the problems encountered in the shell script/program?
What is basename in shell script?
What is the first line of a shell script called?
Is cmd a shell?
Explain about debugging?