Type
From FreeBSDwiki
(Difference between revisions)
m (Reverted edits by 203.211.140.156 (Talk); changed back to last version by Jimbo) |
OuvarDronv (Talk | contribs) |
||
Line 1: | Line 1: | ||
+ | http://www.textvitrli.com | ||
The '''type''' builtin shell command under some [[shell]]s ([[sh]], [[bash]], and [[zsh]]), returns information about a single ''word''. This command is ''not'' built into the [[C shell]], which is the default in FreeBSD (see [[which]] and [[where]]). | The '''type''' builtin shell command under some [[shell]]s ([[sh]], [[bash]], and [[zsh]]), returns information about a single ''word''. This command is ''not'' built into the [[C shell]], which is the default in FreeBSD (see [[which]] and [[where]]). | ||
Revision as of 05:08, 22 May 2009
http://www.textvitrli.com The type builtin shell command under some shells (sh, bash, and zsh), returns information about a single word. This command is not built into the C shell, which is the default in FreeBSD (see which and where).
Examples
sh$ type type type is a shell builtin
bash$ type -a lynx lynx is aliased to `lynx -use_mouse' lynx is /usr/local/bin/lynx
C shell equivalent
tcsh> where lynx lynx is aliased to lynx -use_mouse /usr/local/bin/lynx
Windows command
The DOS command, TYPE, is comparable to the cat command in FreeBSD and other unixlike OSes.