HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

shift — Move positional parameters. More information: <https://www.gnu.org/software/bash/manual/bash.html#in

Submitted by: @import:tldr-pages··
0
Viewed 0 times
positionalcommandclimoveinformationmoreparametersshift

Problem

How to use the shift command: Move positional parameters. More information: <https://www.gnu.org/software/bash/manual/bash.html#index-shift>.

Solution

shift — Move positional parameters. More information: <https://www.gnu.org/software/bash/manual/bash.html#index-shift>.

Remove the first positional parameter:
shift


Remove the first n positional parameters:
shift {{n}}

Code Snippets

Remove the first positional parameter

shift

Remove the first `n` positional parameters

shift {{n}}

Context

tldr-pages: common/shift

Revisions (0)

No revisions yet.