zsh-slides



zsh-slides

0 0


zsh-slides

Intro slides about why zsh rocks!

On Github jeroenbourgois / zsh-slides

ZSH!

Notes on why zsh rocks!

Zsh... what?

zsh - or Z Shell - is a shell environment, just like bash is, but only more powerfull

Pros

  • spelling correction
  • autocompletes everything *
  • cycle through autocomplete results
  • wildcart globbing style **/*
  • shared history

* (that is knows, think plugins)

Demo

            
              ls -q
            
          
            
              # push current command into a buffer,
              # allows you to do another command then
              # returns to previous command
              bindkey '^L' push-line 
            
          

TNX