TOP > Linux > Fedoraの技 > 401-500 > 407
コマンドのパスを調べるには
利用しているコマンドのパスを調べるにはtypeかwhichコマンドを利用します。下記はlsコマンドを調べる例です。
$ type ls
ls is aliased to `ls --color=tty'
$ which ls
alias ls='ls --color=tty'
/bin/ls
typeコマンドでは"-a"オプションを利用することで引数が含まれるすべての場所を表示します。"builtin"はシェル(ここではbash)に組み込まれていることを意味します。
$ type -a ls
ls is aliased to `ls --color=tty'
ls is /bin/ls
$ type echo
echo is a shell builtin
$ type -a echo
echo is a shell builtin
echo is /bin/echo
2005-12-03 作成