The command to display your home directory pathname is

a: echo $HOME
b: echo HOME
c: echo Current Directory
d: echo $PATH
e: echo pathname


a: echo $HOME

Computer Science & Information Technology

You might also like to view...

The shared resource configuration provides the following interfaces to a client: Resource, Resource requested, ________ , and resource-specific interfaces.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

JPEG is to still images what _______ is to motion pictures.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

List the steps you should perform before entering data into a worksheet.

What will be an ideal response?

Computer Science & Information Technology

Which of the following will generate an error?

a) if (answer == 7) { puts("correct"); } else { puts("incorrect"); } b) puts(answer == 7 ? "correct" : "incorrect"); c) printf("%s\n", answer == 7 ? "correct" : "incorrect"); d) answer == 7 ? puts("correct") : puts("incorrect");

Computer Science & Information Technology