Where do I find the "cd" command?

1.6k Views Asked by At

I need to know to know the full path of the command "cd" in ubuntu 10.04. Can anyone please help me find it. For example the full path of the command "dir" is "File System/bin/dir".
-Thanks in advance

2

There are 2 best solutions below

0
On BEST ANSWER

cd is one of the builtin commands of bash (or similar shells).

0
On

/usr/bin/which screws up on shell builtins; type is a better alternative:

$ type cd
cd is a shell builtin