我的机器上安装了subl
命令行工具(OS X 10.9.2)。它工作正常。但我需要知道它在哪里。所以我输入:
which subl
终端窗口中的。但行为就好像命令不存在一样。
你可以想象,谷歌搜索“哪个命令不产生输出”并没有多大帮助。
答案 0 :(得分:1)
要查找某些内容是别名,内置shell还是可执行程序,请使用type
:
# on my system
$ type dir
dir is aliased to `ls -FaGl`
$ type pwd
pwd is a shell builtin
$ type du
du is /usr/bin/du
比使用未编入索引的locate
命令更快。
答案 1 :(得分:0)
使用locate
查找subl
locate subl