what is this line in the shell script do ?#!/bin/ksh

Answer Posted / him

It specifies that shell script will execute under ksh shell
Bsically this first line of shell script specifies the path
of interpreter that will interprete the shell script.

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do we delete all blank lines in a file?

579


How do we create command aliases in a shell?

549


What is the significance of $#?

597


What does .sh file contain?

565


What is the default shell of solaris?

582






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); }

1867


What is shell geeksforgeeks?

604


What is scripting used for?

576


What does debug script mean?

559


shell script for reverse the string

927


c program to display the information of given file similar to givan by the unix or linux command ls -l

1703


Write the syntax for "if" conditionals in linux?

601


State the advantages of shell scripting?

600


What is path in shell script?

643


Is shell a part of kernel?

573