The following command shows the line in the /etc/passwd for msarwar. The user ID is 608, group ID is 200, home directory is /home/faculty/msarwar, and login shell is /bin/bash.

What will be an ideal response?

```
$ echo $PATH
/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/faculty/msarwar/bin
$ PATH=$PATH:~:.
$ export PATH
$ echo $PATH
/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/faculty/msarwar/bin:/home/faculty/msarwar:.
$
```
The echo $PATH command is used to display the search path. The PATH=$PATH:~:. and export PATH commands are used to include home and current directories in the search path.

Computer Science & Information Technology

You might also like to view...

A ________ is a connection to another area of a document or a connection to an Internet address

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which of the following are examples of an illegal search, as defined by the law?

a. Going through the closets in someone’s home without a warrant. b. Looking through a suspect's car at the time of an arrest. c. Searching the bedroom of a teenaged boy, with the consent of the parents. d. Searching a suspect's briefcase after arresting her for DUI.

Computer Science & Information Technology