What is Path variable?What is its use?
Answer / guest
PATH is an environment variable.
It contains the sequence of paths seperated by colons(:)
when we enter commands on the prompt the shell first checks
that coorresponding program to execute in those paths
specified in PATH variable.
We can print that sequnece by typing
echo $PATH
Is This Answer Correct ? | 8 Yes | 0 No |
What are the different types of variables used in shell script?
What is meant by $1 in shell script?
What is in a script?
How would you compare the strings in a shell script?
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.
Rewrite the command to print the sentence and convert the variable to plural: echo “i like $variable”.
How are shells born?
I have to write Shells (Linux + Unix)for publishing packages and reports. Is it possible ? What are the differents executable programs ineed to call ?
How to declare functions in unix shell script?
write a shell script to generate a alert ? like when ur birthday came then generate a alert ur birthday is today like that ?
What is the basic difference you find between a shell script and perl?
What does $# stand for?