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 script files?
How to print all array elements and their respective indexes?
how will you find the total disk space used by a specific user?
What is the significance of $#?
What language is bash?
c program to display the information of given file similar to givan by the unix or linux command ls -l
What is a file basename?
Write down the syntax of "for " loop
What is a shell? · Types of shell · what is shell scripting?
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.
What are types of shells?
What does debug script mean?
How can you get the value of pi till a 100 decimal places?
How to open a read-only file in the shell?
What is another name for a bash shell script that you might see?