ExamGecko
Question list
Search
Search

Question 236 - 101-500 discussion

Report
Export

Which of the following commands changes all CR-LF line breaks in the text file userlist.txt to Linux standard LF line breaks and stores the result in newlist.txt?

A.
tr -d '\r' < userlist.txt > newlist.txt
Answers
A.
tr -d '\r' < userlist.txt > newlist.txt
B.
tr -c '\n\r' '' <newlist.txt> userlist.txt
Answers
B.
tr -c '\n\r' '' <newlist.txt> userlist.txt
C.
tr '\r\n' '' <userlist.txt> newlist.txt
Answers
C.
tr '\r\n' '' <userlist.txt> newlist.txt
D.
tr '\r' '\n' userlist.txt newlist.txt
Answers
D.
tr '\r' '\n' userlist.txt newlist.txt
E.
tr -s '/^M/^J/' userlist.txt newlist.txt
Answers
E.
tr -s '/^M/^J/' userlist.txt newlist.txt
Suggested answer: A
asked 18/09/2024
Athabile Landzela
35 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first