June 2003
Beginner to intermediate
944 pages
43h 1m
English
shift
shift [variable]If variable is given, shift the words in a wordlist variable; i.e., name [2] becomes name [1]. With no argument, shift the positional parameters (command-line arguments; i.e., $2 becomes $1. shift is typically used in a while loop. See additional example under while.
while ($#argv)While there are argumentsif (-f $argv[1])wc -l $argv[1]elseecho "$argv[1] is not a regular file"endifshiftGet the next argumentend
Read now
Unlock full access