命令が組み込まれているのか、それとも別のプログラムがあるのかを確認したいと思います。そしてsh
私はbash
以下を使います:
$ type <command>
何と同じですかcsh
?
答え1
cshには「which」があります(shエイリアスを検出できません)。
私の環境でtcshを使う
~ (101) alias
cd cd !* ; ls
q exit
v cursor; xhost + ;resize -s 40 80; unsetenv TERMCAP; screen
xl xlock -nolock -random
y Xearth; run xclock -geometry +1100+0; run nice xload -geometry +950+0 -update 3
~ (102) which y
y: aliased to Xearth; run xclock -geometry +1100+0; run nice xload -geometry +950+0 -update 3
~ (103) type which
type: Command not found.
~ (104) which which
which: shell built-in command.
~ (105) which ls
/bin/ls
~ (106)
答え2
これを試してみると、次のように表示されます。
$ csh
% type type
type is a shell builtin
だから..はいできますか?