Skip to main content
1 of 2
Tom Hale
  • 33.4k
  • 42
  • 164
  • 257

zsh's alias allows global aliases, whereas bashs are only expanded at the beginning of the line.

In zsh:

alias -g L="| less -FRX" 

You can then do:

verbose-command L 

See here for a list of helpful global aliases.

Tom Hale
  • 33.4k
  • 42
  • 164
  • 257