Linux 中如何使用 alias 命令
简化过长且过于复杂的命令 记住复杂名称的命令 使用你经常使用的命令节省时间
如何创建alias
[root@server1 ~]# alias la='ls -al'
la
看一下:[root@server1 ~]# la
total 68
dr-xr-x---. 3 root root 216 May 25 13:13 .
drwxr-xr-x. 19 root root 271 May 7 15:12 ..
-rw-------. 1 root root 1178 Dec 29 2019 anaconda-ks.cfg
-rw-------. 1 root root 14798 May 20 01:48 .bash_history
-rw-r--r--. 1 root root 18 May 11 2019 .bash_logout
-rw-r--r--. 1 root root 176 May 11 2019 .bash_profile
-rw-r--r--. 1 root root 176 May 11 2019 .bashrc
drwx------ 3 root root 17 Mar 11 11:17 .cache
-rw-r--r--. 1 root root 100 May 11 2019 .cshrc
-rw------- 1 root root 64 May 25 13:13 .lesshst
-rw-r--r-- 1 root root 234 May 19 09:52 sample.html
-rw-r--r--. 1 root root 129 May 11 2019 .tcshrc
-rw-r--r-- 1 root root 1178 May 19 09:32 test.txt
-rw------- 1 root root 15904 May 25 10:15 .viminfo
如果要使用,可以将该命令写入
~/.bashrc
文件里面。[root@server1 ~]# echo "alias la='ls -al'" >> ~/.bashrc
如何列出alias
[root@server1 ~]# alias
检查命令类型是否是别名
which
命令。如下实例显示的内容就是别名。[root@server1 ~]# which la
alias la='ls -al'
/usr/bin/ls
如何删除alias
~/.bashrc
文件中删掉对应的别名。[root@server1 ~]# unalias la
对常用命令使用alias
ll
显示目录中的文件,并仅查看近创建或更新的五个文件:[root@server1 ~]# alias c='clear'
[root@server1 ~]# alias ll='ls -al'
[root@server1 ~]# alias new='ls -1tr | tail -5'
使用alias来更改命令的行为
[root@server1 ~]# alias ping='ping -c 4'
使用alias避免长字符串的选项
[root@server1 ~]# alias untar='tar -xvf'
使用alias查看命令的历史记录
[root@server1 ~]# alias rec='history | grep'
[root@server1 ~]# rec alias
使用alias搜索相关的命令
apropos
命令,但是该命令有点陌生,可以设置一个别名,使用以下命令:[root@server1 ~]# alias ?="apropos"
?
搜索和compress相关的命令:[root@server1 ~]# ? compress
显示你的IP地址
[root@server1 ~]# alias myip='hostname -I'
总 结
以上文章来源于Linux就该这么学 ,作者逄增宝
相关文章