Q:

To replace | with ~, which one of the following commands will be used?

0

To replace | with ~, which one of the following commands will be used?


  1. tr ‘|’ ‘~-‘
  2. tr ‘|’ ‘~-‘ > emp.lst
  3. tr | ~ emp.lst
  4. !

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

(b).tr ‘|\’ ‘~-‘ > emp.lst

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

UNIX - FILTERS AND REGULAR EXPRESSIONS MCQ

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
head -n 3 emp.lst | tr ‘[a-z]’ ‘[A-Z]’... >>
<< Which command is used for translating characters?...