「よく使うalias」の版間の差分

提供: オレッジベース
移動先: 案内検索
(まとめ)
(alias集)
40行目: 40行目:
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
 
alias ..='cd ..'
 
alias ..='cd ..'
 +
</syntaxhighlight>
 +
 +
==== watch関連 ====
 +
<syntaxhighlight lang="bash">
 +
alias watch='watch '
 
</syntaxhighlight>
 
</syntaxhighlight>
  

2020年10月17日 (土) 00:24時点における版

aliasを記載する場所

~/.bash_profile
or
RedHat系
/etc/bashrc
or
Debian / Ubuntu系
/etc/bash.bashrc

aliasを即反映

$ source ~/.bash_profile


alias集

sudo

alias sudo='sudo '

ls関連

alias ll='ls -lhA --color=auto --full-time'

grep関連

alias grep='grep --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'

git関連

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"'

cd関連

alias ..='cd ..'

watch関連

alias watch='watch '

まとめ

黙ってこれをコピペ

alias sudo='sudo '
alias ll='ls -lhA --color=auto --full-time'
alias grep='grep --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
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"'
alias ..='cd ..'