LoginSignup
8
8

More than 5 years have passed since last update.

zshの便利機能の1つ,グローバルエイリアス

Last updated at Posted at 2012-03-16

GやL,... は多用する.
たとえば
$ tail -f some.log G error
みたいな使い方をよくする

# global alias
alias -g TELLME="&& say succeeded || say failed"
alias -g G="| grep"
alias -g H='| head'
alias -g L="| less -R"
alias -g W='| wc'
alias -g T='| tail'
alias -g ...='../..'
alias -g ....='../../..'

8
8
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8