别名 – 如果别名已经设置,我该怎么检查我的bashrc?

前端之家收集整理的这篇文章主要介绍了别名 – 如果别名已经设置,我该怎么检查我的bashrc?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果别名已经设置,我该如何检查我的bashrc.

当我发送一个具有函数名称的bashrc文件时,表示乐趣,而我当前的环境也有一个别名.

我尝试unalias乐趣,但这将给我一个错误,当我的环境没有这个别名时,没有找到乐趣.

所以在我的bashrc,在我的乐趣功能,我想检查是否别名设置,然后unalias.

如果您只想确定别名不存在,只需unalias它并将其错误重定向到/ dev / null,就像这样:
unalias foo 2>/dev/null

您可以检查别名是否设置如下:

alias foo 2>/dev/null >/dev/null && echo "foo is set as an alias"

正如联机帮助页所示:

For each name in the argument list for which no  value  is  sup-
plied,the  name  and  value  of  the  alias is printed.  Alias
returns true unless a name is given for which no alias has  been
defined.
原文链接:https://www.f2er.com/bash/386834.html

猜你在找的Bash相关文章