What is the use of "shift" command in passing parameters?
Answer Posted / satchi
"shift" is useful when you need to access positional
parameters more than 9.
EX- execute a script to display 11th position parameter.
#./test.sh 1st 2nd 3rd 4th 5th 6th 7th 8th 9th 10th 11th
12th
shell scripts limits the access of arguments up to 9.to
over come this calculate the position of argument you want
to access and use shift to pull inside 9th countdown.
ex:
withen the script write "shift 2" before "echo $9"to
display 11th parameter.
withen the script write "shift 3" before "echo $9"to
display 12th parameter.
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What are the different types of variables used in shell script?
What does $$ mean in shell script?
What is a shell in operating system?
Explain about debugging?
How do you create a shortcut in linux?
How to get script name inside a script?
What does echo $0 do?
Which scripting language is best for automation?
What does egrep mean?
Rewrite the command to print the sentence and convert the variable to plural: echo “i like $variable”.
What is awk in shell script?
Determine the output of the following command: name=shubham && echo ‘my name is $name’.
What is a command line shell?
What does chmod do?
Write a script to print the first 10 elements of fibonacci series.