よく使うalias

提供: オレッジベース
2019年3月7日 (木) 14:20時点における371 (トーク | 投稿記録)による版 (ページの作成:「=== aliasを記載する場所 === ~/.bash_profile === aliasを即反映 === <syntaxhighlight lang="bash"> $ source ~/.bash_profile </syntaxhighlight> === alias集 ==...」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先: 案内検索

aliasを記載する場所

~/.bash_profile


aliasを即反映

$ source ~/.bash_profile


alias集

lsの代用

alias ll='ls -lhA'

gitのlog

alias gl='git log --oneline --decorate=full --graph --branches --tags --remotes --date=iso --format="%C(yellow)%H%C(reset) %C(magenta)[%ad]%C(reset) %C(cyan)@%an%C(reset) %C(auto)%d%C(reset) %s"'