mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-30 09:33:52 +02:00
12 lines
238 B
Markdown
12 lines
238 B
Markdown
# 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}}`
|