69
61

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

zshにエイリアスとかいう奴入れたら人生の時間がn秒増えて神

Posted at

概要

エイリアスを知らない方向けです

この記事を見ることで人生の時間が消費されてしまったら意味がないので30秒で終わる記事にします

秒で終わらせたい人向け概要

  • ~/.zshrcに任意のaliasを設定
  • source ~/.zshrcして読み込み
  • 終了

エイリアスとは?

ショートカットみたいな奴です
いつも打つクソ長いコマンドを短く打てるようになります

~/.zshrc
alias ショートカットコマンド='元コマンド'

みたいな感じで登録させます

登録したら読込みさせる魔法の呪文を実行してください

source ~/.zshrc

エイリアスの登録例

~/.zshrc
alias gs='git status'
git status

だったら設定さえすれば

gs

とかで見れるようになります

これで皆さんの貴重な人生の時間が増えますね

私の設定

~/.zshrc
# alias
## SSH
alias sshk='ssh-keygen -t rsa'
alias vsc='vi ~/.ssh/config'

## Node
alias n='node index.js'

### npm
alias ni='npm install'
alias nu='npm uninstall'
alias nr='npm run'

### yarn
alias ya='yarn add'
alias yr='yarn remove'
alias yi='yarn install'

## git
alias gs='git status'
alias gaa='git add'
alias gc-b='git checkout -b'
alias gc-m='git commit -m'
alias gp='git push'

## zsh
alias sz='source ~/.zshrc'
alias vz='vi ~/.zshrc'

おわり

おすすめの設定やエイリアスなどがあれば教えてください

69
61
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
69
61

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?