Home » 2014 » December » 28 » Shift command with examples

4:02 PM
Shift command with examples

shift - shift command is used to shift positional parameters

FORMAT
       shift [n]

DESCRIPTION
       The positional parameters can be shifted using this command. Positional parameter 1 shall be assigned the value of parameter (1+n), parameter 2 shall be assigned  the     value of parameter (2+n), and so on.


The parameters represented by the numbers "$#" down to "$#-n+1" shall be unset, and the parameter '#' is updated to reflect the new number of positional parameters.

       The value n shall be an unsigned decimal integer less than or equal to the value of the special parameter '#' . 

If n  is  not  given,  it  is assumed to be 1. If n is 0, the positional and special parameters are not changed.


Examples:

Below is a simple script to understand the use of shift command:

shanky@local:/home/shanky/test:> cat shifttest.sh
 

#!/usr/bin/ksh
print "Param1=$1";
print "Param2=$2";
print "Param3=$3";

print "All parameters before shift:$*"
shift 2; #shifting by two positions

print "Param1=$1";
print "Param2=$2";
print "Param3=$3";
print "All parameters after shift:$*"

We have used "shift 2" to shift the positional parameters by 2 positions. When we execute the script, the output is as below:

shanky@local:/home/shanky/test:> ./shifttest.sh 45 67 89 77
Param1=45
Param2=67
Param3=89
All parameters before shift:45 67 89 77
Param1=89
Param2=77
Param3=
All parameters after shift:89 77

You may notice that the first parameter is containing the value of 3rd positional paremters and so on..

 
 

Category: Open System-Linux | Views: 1281 | Added by: shanky | Tags: how to shift positional parameters , shift, shift command in linux, shift positional parameters in linu | Rating: 0.0/0

Related blogs


You may also like to see:


[2014-06-05][Open System-Linux]
SCRIPT command: Save your Linux sessions automatically
[2014-03-25][Open System-Linux]
Create a new user in Linux system: useradd
[2015-06-16][Open System-Linux]
Alien command : convert files from one form to another, install binary packages
[2014-03-11][Open System-Linux]
STRINGS : a command in linux to read the non-text files
[2014-04-22][Open System-Linux]
xmllint : a command line xml tool to view and find errors in XML file

Total comments: 0
ComForm">
avatar