Skip to content

Instantly share code, notes, and snippets.

@tuurep
Last active March 14, 2025 05:15
Show Gist options
  • Save tuurep/d0c3e81d21c5e5a80ee765329469bef8 to your computer and use it in GitHub Desktop.
Save tuurep/d0c3e81d21c5e5a80ee765329469bef8 to your computer and use it in GitHub Desktop.

My most used ! history expansions (bash/zsh)

Last commands:

1 foo bar baz qux
2 corge grault garply waldo

Expansions:

!! πŸ‘’ corge grault garply waldo

!* πŸ‘’ grault garply waldo

!$ πŸ‘’ waldo

!foo πŸ‘’ foo bar baz qux

!?baz πŸ‘’ foo bar baz qux

!foo* πŸ‘’ bar baz qux

!foo$ πŸ‘’ qux

Full reference (zsh):

https://zsh.sourceforge.io/Doc/Release/Expansion.html#History-Expansion

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment