Command used to supress all spaces from a given file named test.

  1. cat test | cut ' '

  2. cat test | tr -s ' '

  3. cat test | tr ' ' ''

  4. cat test > test 1


Correct Option: B

Find more quizzes: