vote up 0 vote down star

I'm using GNU bash, version 3.00.15(1)-release (x86_64-redhat-linux-gnu). And this command:

echo "-e"

doesn't print anything. I guess this is because "-e" is one of a valid options of echo command because echo "-n" and echo "-E" (the other two options) also produce empty strings.

The question is how to escape the sequence "-e" for echo to get the natural output ("-e").

flag

8 Answers

vote up 5 vote down check

This is a tough one ;)

Usually you would use double dashes to tell the command that it should stop interpreting options, but echo will only output those:

$ echo -- -e
-- -e

You can use -e itself to get around the problem:

$ echo -e '\055e'
-e

Also, as others have pointed out, if you don't insist on using the bash builtin echo, your /bin/echo binary might be the GNU version of the tool (check the man page) and thus understand the POSIXLY_CORRECT environment variable:

$ POSIXLY_CORRECT=1 /bin/echo -e
-e
link|flag
vote up 4 vote down

There may be a better way, but this works:

printf -- "-e\n"
link|flag
In this case it works but it doesn't solve the global problem. Consider: printf "--version" – wheleph Nov 26 '08 at 12:25
1  
@wheleph You have ignored the "--" before the "-e\n". This separates options from arguments. This is the best, portable (across shells) answer. +1. – rq Nov 26 '08 at 13:03
@rq Yes, I've missed it. +1 – wheleph Mar 11 at 8:05
vote up 2 vote down

You could cheat by doing

echo "-e "

That would be dash, e, space.

Alternatively you can use the more complex, but more precise:

echo -e \\x2De

link|flag
vote up 1 vote down
 
[root@scintia mail]# POSIXLY_CORRECT=1; export POSIXLY_CORRECT
[root@scintia mail]# /bin/echo "-e"
-e
[root@scintia mail]#
link|flag
Just 'POSIXLY_CORRECT=1 /bin/echo -e' (without the 's) is enough. Although this is not using the BASH version of echo – Vinko Vrsalovic Nov 26 '08 at 11:16
Information about Bash POSIX mode: network-theory.co.uk/docs/bashref/…. Item 41 addresses echo command. The only question left for me is why [root@scintia mail]# POSIXLY_CORRECT=1; export POSIXLY_CORRECT; echo "-e"; doesn't work – wheleph Nov 26 '08 at 16:06
Vinko, '/bin/echo -e' is also enough:) – wheleph Nov 26 '08 at 16:14
vote up 1 vote down

Another alternative:

echo x-e | sed 's/^x//'

This is the way recommended by the autoconf manual:

[...] It is often possible to avoid this problem using 'echo "x$word"', taking the 'x' into account later in the pipe.

link|flag
vote up 0 vote down

Another way:

echo -e' '
echo -e " \b-e"
link|flag
tho it outputs more than just "-e" under the hood :) – Johannes Schaub - litb Nov 26 '08 at 11:52
vote up 0 vote down

After paying careful attention to the man page :)

SYSV3=1 /usr/bin/echo -e

works, on Solaris at least

Paul.

link|flag
I haven't found any references to SYSV3 env variable in Linux echo man page – wheleph Nov 26 '08 at 16:12
Looks like the POSIXLY_CORRECT env var from another answer is the equivalent? – Paul Nov 27 '08 at 14:23
vote up 0 vote down
/bin/echo -e

works, but why?

[resin@nevada ~]$ which echo 
/bin/echo
link|flag
1  
If you write "echo -e" it uses the bash internal echo, and writing "/bin/echo -e" uses the external /bin/echo command. But on my Ubuntu 8.04 box none of the two versions work.. – Anders Westrup Dec 11 '08 at 8:48

Your Answer

Get an OpenID
or

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