Revision [647]
This is an old revision of CommandShift made by DavidLee on 2009-07-26 18:15:57.
Command shift
Name
shift Shifts positional arguments or sequence variablesSynopsis
shift [n]shift variable [n]
Shifts the positional parameters by 1 or n.
example:
$ set a b c d e $ shift $ echo $* b c d e $ shift 2 $ echo $* d e
CommandsBuiltin
CategoryCommands