Summary: | 'echo' escapes displayed not interpreted | ||
---|---|---|---|
Product: | [Retired] Red Hat Linux | Reporter: | stevec |
Component: | sh-utils | Assignee: | Bill Nottingham <notting> |
Status: | CLOSED WONTFIX | QA Contact: | |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 6.1 | CC: | jcassell, rvokal |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | i386 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 1999-11-09 19:51:14 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: |
Description
stevec
1999-10-29 13:56:16 UTC
According to the echo manpage, you should add '-e' to display escapes. What version of echo is on the SuSe version you mention? Hmm.... looking at the Changelog for sh-utils, it looks like that the default of *not* interpreting backslash characters is the POSIX thing to do. *** Bug 6768 has been marked as a duplicate of this bug. *** /bin/echo and echo no longer interpret the newline escape character embedded in a string. E.G. TMP="This is some text" TMP=${TMP}"\nwith a newline in the middle" /bin/echo ${TMP} This code work fine in 6.0 and other flavors of unix: This is some text with a newline in the middle but in RH 6.1 this is the output: This is some text\nwith a newline in the middle This bug has cost us a lot of time and money! What are you guys smoking over there?! (sorry) ------- Additional Comments From jcassell 11/08/99 15:16 ------- BTW, I neglected to mention, the bug-like echo behavior is exhibited in a Bourne shell script - i.e. #!/bin/sh. |