Linux unalias命令
Linux 教程
· 2019-02-17 17:56:59
Linux unalias命令用于删除别名。
unalias为shell内建指令,可删除别名设置。
语法
unalias [-a][别名]
参数:
- -a 删除全部的别名。
实例
给命令设置别名
[root@w3cschool.cc ~]# alias lx=ls [root@w3cschool.cc ~]# lx anaconda-ks.cfg Desktop install.log install.log.syslog qte
删除别名
[root@w3cschool.cc ~]# alias lx //显示别名 alias lx='ls' [root@w3cschool.cc ~]# unalias lx //删除别名 [root@w3cschool.cc ~]# lx -bash: lx: command not found
点击查看所有 Linux 教程 文章: https://codercto.com/courses/l/14.html
Python for Everyone
Cay S. Horstmann、Rance D. Necaise / John Wiley & Sons / 2013-4-26 / GBP 181.99
Cay Horstmann's" Python for Everyone "provides readers with step-by-step guidance, a feature that is immensely helpful for building confidence and providing an outline for the task at hand. "Problem S......一起来看看 《Python for Everyone》 这本书的介绍吧!