Skip to content

Instantly share code, notes, and snippets.

@syranez
Created May 27, 2012 17:13
Show Gist options
  • Save syranez/2815134 to your computer and use it in GitHub Desktop.
Save syranez/2815134 to your computer and use it in GitHub Desktop.
type...
[1911]s[syranez@elis:~]$ type doesnotexists 2&> /dev/null
[1911]s[syranez@elis:~]$ echo $?
1
[1912]s[syranez@elis:~]$ type type 2&> /dev/null
[1912]s[syranez@elis:~]$ echo $?
1
[1912]s[syranez@elis:~]$ type type
type is a shell builtin
[1912]s[syranez@elis:~]$ echo $?
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment