alias用法

简介:
  • alias :别名的意思。

  • 1、基本用法:alias 新的命令='原命令 -选项/参数'。例:重新定义 ls 命令。

  • 1
    alias  ls =‘ ls  -alt'
  • 2、删除别名:可以使用 unalias 命令。

  • 1
    unalias  l

这个方法只是暂时的,如果重启一次就失效了,如果我们想永久生效一个命令怎么办呢?

vi .bashrc (其他发行版也许可以修改.bash_profile)

1
2
3
4
5
6
7
8
9
10
11
12
13
# .bashrc
 
# User specific aliases and functions
 
alias  rm = 'rm -i'
alias  cp = 'cp -i'
alias  mv = 'mv -i'
 
 
# Source global definitions
if  [ -f  /etc/bashrc  ];  then
         /etc/bashrc
fi

直接在我们的环境变量文件中添加alias xx='xxxxx'然后保存退出。最后让环境配置生效。

1
source  .bashrc

或者

1
source  ~/.bashrc





      本文转自 M四月天 51CTO博客,原文链接:http://blog.51cto.com/msiyuetian/1681030,如需转载请自行联系原作者


相关文章
|
编译器 C++ 开发者
c++新特性:类型别名(Type Alias)
c++新特性:类型别名(Type Alias)
133 0
c++新特性:模版别名(Alias template )
c++新特性:模版别名(Alias template )
112 0
|
负载均衡 网络协议 应用服务中间件
ES中索引别名(alias)的到底有什么用
ES中索引别名(alias)的到底有什么用
ES中索引别名(alias)的到底有什么用
alias别名的使用
alias别名的使用
175 0
|
Linux Ubuntu
centos7下别名(alias)的特殊用法
版权声明:转载请注明出处:http://blog.csdn.net/dajitui2024 https://blog.csdn.net/dajitui2024/article/details/79438200 参考:https://www.cyberciti.biz/faq/bash-bypass-alias-command-on-linux-macos-unix/ 正常情况下,定义过的别名,未必是我们想使用的。
1583 0
|
开发工具
|
安全 Shell