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
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).
JPEG is to still images what _______ is to motion pictures.
Fill in the blank(s) with the appropriate word(s).
List the steps you should perform before entering data into a worksheet.
What will be an ideal response?
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");