1、创建别名命令
[root@localhost test]# pwd /home/test [root@localhost test]# abc bash: abc: command not found... [root@localhost test]# alias abc=pwd ## 创建别名命令, abc等价于pwd命令 [root@localhost test]# abc /home/test
2、查看别名命令
[root@localhost test]# abc /home/test [root@localhost test]# alias abc ## 查看别名命令 alias abc='pwd'
3、取消别名命令
[root@localhost test]# abc ## abc的别名命令为pwd /home/test [root@localhost test]# unalias abc ## 取消abc的别名命令 [root@localhost test]# abc bash: abc: command not found...