UNIX Shell scripting

12345678910
Across
  1. 2. If you are using a _______-type shell, the default prompt is the $ character.
  2. 3. To access the value stored in a variable, prefix its name with the ________ sign.
  3. 5. Comments, or non-command code, in a shell script begin with the ________ character.
  4. 8. If you want vi to ignore case sensitivity, you can use the :set _________ command.
  5. 10. All UNIX files have its description stored in a structure called ________.
Down
  1. 1. The command ‘set _________’ instructs vi editor to automatically indent the lines to make the code in more readable format.
  2. 4. The keyword ‘$_’ can be used to get the ________ of previously executed command.
  3. 6. Once you _______ a variable, you would not be able to access stored value in the variable.
  4. 7. The command _______ can be used to display information about users on a given host.
  5. 9. All shell scripts should be terminated with the ________ command.