How do i replace the \r?

#!/bin/bash
...

# setup
if [[ $i =~ $screen ]]; then

    ORIGINAL=${BASH_REMATCH[1]}          # original value is: 3DROTATE\r
    AFTER   =${ORIGINAL/\\r/}            # does not replace \r
    myThirdPartyApplication -o $replvar  # FAILS because of \r

fi
link|improve this question

can't have spaces around the = – glenn jackman Oct 18 '11 at 12:40
feedback

2 Answers

up vote 1 down vote accepted

You could use sed, i.e.,

AFTER = `echo $ORIGINAL | sed 's/\\r//g'`
link|improve this answer
feedback

Just use a literal ^M character, it has no meaning to bash.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.