3.1 命令的别名 (alias、unalias)

3.1.1 alias 命令

alias命令用于设置命令的别名。

1、查看别名

  • 列出系统中所有的别名。
[root@localhost ~]# alias
alias cp='cp -i'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l.='ls -d .* --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls --color=auto'
alias mv='mv -i'
alias rm='rm -i'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
  • 查看 ls 命令的别名。
[root@localhost ~]# alias ls
alias ls='ls --color=auto'

2、定义别名

  • 自定义别名,给 " ls -l / " 命令设置别名 lsl,这样我们直接使用 lsl 命令即可列出根目录下的内容。
[root@localhost ~]# alias lsl='ls -l /'
[root@localhost ~]# lsl
总用量 16
lrwxrwxrwx.   1 root root    7 12月  9 2019 bin -> usr/bin
dr-xr-xr-x.   5 root root 4096 12月  9 2019 boot
drwxr-xr-x.  20 root root 3240 12月  9 2019 dev
drwxr-xr-x.  75 root root 8192 1月  20 20:39 etc
……略……
  • 用命令定义的别名,是临时生效的,要想永久生效,需要写入环境变量配置文件 ~/.bashrc 。
[root@localhost ~]# vim .bashrc 
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
#加入别名命令,这样就可以永久使用它
alias lsl='ls -l /'
# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

#添加玩别名后,记得 source 以下 .bashrc 文件,可使别名立即生效,即可使用
[root@localhost ~]# source .bashrc 
[root@localhost ~]# lsl
总用量 16
lrwxrwxrwx.   1 root root    7 12月  9 2019 bin -> usr/bin
dr-xr-xr-x.   5 root root 4096 12月  9 2019 boot
drwxr-xr-x.  20 root root 3240 12月  9 2019 dev
……略……

3、取消别名

刚刚我们有定义 lsl 的别名命令,当我们不想使用这个别名,该如何取消呢?

  • 取消 lsl 别名命令
[root@localhost ~]# unalias lsl
[root@localhost ~]# lsl
-bash: lsl: 未找到命令
  • 取消所有别名命令:
unalias -a
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值