最終更新:2018-05-06 (日) 16:18:22 (2447d)
alias
Top / alias
https://www.gnu.org/software/bash/manual/html_node/Aliases.html#Aliases
alias lsa = 'ls -al'
alias emacs='emacs -nw'
メモ
- Aliases are not expanded when the shell is not interactive, unless the expand_aliases shell option is set using shopt
- インタラクティブシェルではない場合は展開されない
メモ
- alias 設定されているエイリアスを一覧表示。
- alias aliasname 指定した名前のエイリアスの設定内容を表示。
- \aliasname エイリアスが設定されていたとしてもそれを無視してコマンドを実行。
設定ファイル
- .bashrcに書く
CentOS
- .bashrc
- Linux/etc/profile.d/colorls.sh
alias l.='ls -d .* --color=auto' alias ll='ls -l --color=auto' alias ls='ls --color=auto' alias vi='vim' alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
Ubuntu
- .bash_aliases - .bashrcから呼ばれる
Mac OS X
Sierra
- .bashrcを読まなくなったので.bash_profileに書く
メモ
- Aliases are not expanded when the shell is not interactive, unless the expand_aliases shell option is set using shopt
- インタラクティブシェル