리눅스에서 명령어 alias 하는 방법

리눅스에서 명령어 alias 하는 방법

간단합니다.

자신의 홈으로 이동 후에...  .bashrc 에서 추가해주시면 됩니다.

alias lss='ls -sl'  를 추가해본 모습입니다.

로그아웃 한 후 로그인 해야 적용된 모습을 볼 수 있습니다.


[root@localhost ~]# cd
[root@localhost ~]# ls -a
.               .bashrc    Download   .gnome2_private    install.log.syslog  Pictures       .tomboy
..               .config    .esd_auth  .gstreamer-0.10    .local              Public         .tomboy.log
anaconda-ks.cfg  .cshrc     .gconf     .gtk-bookmarks     .metacity           .pulse-cookie  .Trash
.bash_history    Desktop    .gconfd    .gtkrc-1.2-gnome2  .mozilla            .tcshrc        Videos
.bash_logout     .dmrc      .gnome     .ICEauthority      Music               Templates      .wapi
.bash_profile    Documents  .gnome2    install.log        .nautilus           test           .xsession-errors
[root@localhost ~]#
[root@localhost ~]#
[root@localhost ~]#
[root@localhost ~]# vi .bashrc

# .bashrc

# User specific aliases and functions

alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias lss='ls -sl'


# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi
~
~
~