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

Answer Posted / seshadri sethi

To invoke the shell indirectly this line is added as the
first line in the file.This particular line invokes korn shell

Is This Answer Correct ?    8 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain about login shell?

633


Is shell scripting a programming language?

574


how will you find the total disk space used by a specific user?

578


What is the default ubuntu terminal?

620


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

1853






Explain about stdin, stdout and stderr?

631


Using set -A write a script to print the output of the ls command in 5 columns with two spaces between each column. Pretend that ls does not have multicolumn output.

2031


What is the command to find out users on the system?

572


What is shell geeksforgeeks?

593


What are the disadvantages of shell scripting?

636


What does it mean to debug a script?

570


What is echo $shell?

621


How to set an array in linux?

595


What is bourne shell scripting?

533


Is shell scripting difficult?

558