Tr command

tr -d '\15\32' < abc.txt > xyz.txt

what this command will do? what is '\15\32' here?

Please help me.

Welcome to the forum.

That command will delete all occurrences of <CR> and <SUB> characters, given as their octal representation, in a file.

man tr :

man ascii: