green dotコマンドのタイプを表示

type コマンドは、コマンドのタイプを表示することができる。
  type コマンド名...

【例】

  $ type cd
  cd is a shell builtin
  $ type ls
  ls is hashed (/bin/ls)
  $ type which
  which is aliased to `type -path'
  $ type f77
  f77 is /usr/bin/f77
  $
line-end