what is this line in the shell script do ?#!/bin/ksh
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / 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 |
Answer / satyabrata
A)it give the path of shell and where the shell script will
run.
B) it gives the name of which shell you are working
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / 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 |
State the advantages of shell scripting?
Is shell a part of kernel?
How do I start a shell script?
What is bourne shell scripting?
write a shell program to check wheather a given string is pallindrome or not?
I want to connect to a remote server and execute some commands, how can I achieve this?
How do I run a powershell script?
What is the best scripting language?
What is meant by dos operating system?
Devise a script that takes file name as arguement(which must present in the current directory)and locates from your home directory tree all thpath names of its links.Then mail the list to self.
How to find all the files modified in less than 3 days and save the record in a text file?
What does $$ mean in shell script?