mac コマンドの種類を取得する方法
環境
macOS 11.5.2
概要
コマンドの種類を取得するには、「 type 」コマンドを使用します。
操作例
1.typeコマンドで種類を取得する
% type cd
結果
cd is a shell builtin
% type ls
結果
ls is /bin/ls
オプション「-a」を使用して、全てのtypeが取得できます。
% type -a cd
結果
cd is a shell builtin
cd is /usr/bin/cd
2.pathのみを取得する場合は、オプション「-p」を使用します。
% type -p cat
<出力結果>
/bin/cat
% type -p httpd
<出力結果>
/usr/sbin/httpd