Tag: unix

Questions Related to unix

  1. -r

  2. -x

  3. -i

  4. -1


Correct Option: C
Explanation:

The answer is C, -i.

The -i option tells the rm command to prompt the user before deleting each file. This is useful if you want to make sure you are deleting the correct files.

The other options are not correct.

  • -r recursively deletes directories and their contents.
  • -x forces the rm command to continue even if it encounters errors.
  • -1 prompts the user once before deleting more than three files.

Here is an example of how to use the -i option:

rm -i file1 file2 file3

This will prompt the user to confirm the deletion of each file. For example, the user might be prompted with the following:

rm: remove file1? (y/N)

If the user enters y, the file will be deleted. If the user enters N, the file will not be deleted.

  1. to move the cursor to a matching delimiter, when a delimiters a parenthesis, a bracket, or a brace.

  2. to move the cursor to the upperleft corner of the screen

  3. to move the cursor backward to the beginning of a word

  4. to move the cursor to the first column in the current line


Correct Option: A

The filed separator in cut command is specified with

  1. -a option

  2. -d option

  3. -r option

  4. -x option


Correct Option: B

Which of the following options will be used to display number of blocks used by a file?

  1. -c

  2. -i

  3. -d

  4. -s


Correct Option: C

Which option will be used with touch command to change the access time?

  1. -a

  2. -b

  3. -t

  4. -h


Correct Option: A
  1. chmod -R a x progs

  2. chmod -R 222 progs

  3. chmod -1 a x progs

  4. chmod -x a x progs


Correct Option: A