Some examples of shell built-ins are cd, echo, read, exit, logout, alias, fg or bg.You can see what cd does by changing the current working directory to a new one and see the new path using the pwd command:$ pwd/home/embryo$ cd /usr/share$ pwd/usr/shareYou can now type ls to see the available files in /usr/share.