微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

执行“哪个”绕过别名和功能

如何解决执行“哪个”绕过别名和功能

$ command gs
GPL Ghostscript 8.70 (2009-07-31)
copyright (C) 2009 Artifex Software,Inc.  All rights reserved.
This software comes with NO WARRANTY: see the file PUBLIC for details.
GPL Ghostscript 8.70: Cannot open X display `(null)'.
**** Unable to open the initial device,quitting.

$ which gs
alias gs='git status'
        /opt/rh/rh-git29/root/usr/bin/git

如何为ghostscript做which,以便找到它的路径,就像which $(command gs)一样?

一种方法肯定是首先取消混叠gs

$ unalias gs
$ which gs
/usr/bin/gs

还有更好的方法吗?

type which输出

$ type which
which is aliased to `alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

解决方法

我正在公司的机器上工作。 @Cyrus的评论显示which的别名为alias。这样做应该可以做到:

$ /usr/bin/which gs
/usr/bin/gs

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。