Skip to content
The Shell Reliquary

/static/relicario/en/reliquia/palavra-cauda/

Menu

SHL-014 · Words

!:n*

From the nth word to the last: the tail of the line.

The asterisk after the number means "from here to the end". !:1* is everything but the command — same as !:* — and !:2* starts at the second argument.

It shines when swapping one command for another that takes the same syntax: the whole tail crosses over intact.

$ docker run -it --rm debian bash
$ podman !:1*
podman run -it --rm debian bash
Swapped the command; the tail of the line came along.