20

I'm trying to print -n using the echo command. But if i simply type echo -n, it only issues a newline, not show up -n, instead it issues a newline.

Star OS
  • 2,668
  • Does echo -n -- -n work (don't have any linux box handy to test)? – n0rd Nov 23 '15 at 19:07
  • I'm installing Ubuntu in a virtual machine and it seems to be very slow, wait. – Star OS Nov 23 '15 at 19:07
  • 1
    I've checked - it does not. Probably because it's internal bash command and it's not using getopt (???) to parse command line – n0rd Nov 23 '15 at 19:46
  • 1
    This question is asked and answered in http://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.html - - "Conforming applications that ... could possibly be expecting to echo a -n, should use the printf utility derived from the Ninth Edition system" – Brandin Nov 25 '15 at 09:42
  • First popular question i have made. Yay? – Star OS Dec 08 '15 at 22:05
  • ... 100 reputation on all of my communities? Nice reward, moderators! – Star OS Dec 15 '15 at 08:58

9 Answers9

31

The problem is that echo interprets the -n as an argument. On the default bash implementation, that means (from help echo):

  -n  do not append a newline

There are various ways of getting around that:

  1. Make it into something that isn't an option by including another character. For example, tell echo not to print a newline with -n, then tell it to interpret backslash escapes with -e and add the newline explicitly.

    $ echo -ne '-n\n'
    -n
    
  2. Alternatively, just include a space

    $ echo " -n"
     -n
    

    That, however, adds a space which you probably don't want.

  3. Use a non-printing character before it. Here. I am using the backspace (\b)

    $ echo -e "\b-n"
    -n
    

    This also adds an extra character you probably don't want.

  4. Use trickery

    $ echo n- | rev
    -n
    

    The rev command simply prints its output reversed.

  5. Use the right tool for the job

    $ printf -- '-n\n'
    -n
    
terdon
  • 104,404
16

Sometimes it's a good idea to use the right tool. You could use printf instead:

% printf "-n\n"       
-n
A.B.
  • 92,275
7

You can use this command, but it adds an extra space.

echo -e  "\r-n"

This is a kind of a hack.

-e enables backslash command symbols.

\r is a carriage return.

Actually any \ valid character will do in any place of the string.

You can see which are valid by help echo.

echo "-n" does not work because -n is used as a parameter for echo.

P.S. The best solution IMHO is

echo -e "-n\c"

It does not add any extra characters.

echo -e "-n\n"

prints the same but with a new line char.

Pilot6
  • 92,169
  • 1
    Wov! This is better than mine; can you explain a bit for "beginners" ;-) – Sadi Nov 23 '15 at 17:59
  • Thanks, I've also noticed that it doesn't matter where you add the carriage return, at the beginning or the end. – Sadi Nov 23 '15 at 18:05
  • @Sadi yes, that's because adding anything makes it a non-valid option. -n is valid, -nfoo is not so that will be printed. – terdon Nov 23 '15 at 18:20
  • @terdon man echo has it too. But help is a bit better. – Pilot6 Nov 23 '15 at 18:22
  • I know it has it, it's just not relevant. /bin/echo is a completely different thing and when you run echo in bash, you get the builtin which can be quite different depending on your shell. – terdon Nov 23 '15 at 18:23
  • You can also print the extra character, and then erase it: echo -e "- \x08n" – Benubird Nov 24 '15 at 10:57
5

I think if you definitely want to use echo only, this should satisfy you:

echo "-n "

This works because while -n is a valid option for echo, -n with a space after it is not. Since it isn't an option, echo just prints it.

terdon
  • 104,404
Sadi
  • 11,084
5

You guys are really overthinking it.

 echo -e \\055n

Or with no trailing newline

 echo -en \\055n
Joshua
  • 719
2

In Bash script you can run:

echo -n -
echo n

Or in interacive shell:

echo -n - ; echo n

This echoes a - character and an n character.

jiwopene
  • 219
2

To extend @A.B's answer, the only portable way to use echo is to refrain from using any options like -n. Consider use printf instead where available. This reference page provides more details and explains very well when and how echo and printf should be used:

Nowadays, echo(1) is only portable if you omit flags and escape sequences. Use printf(1) instead, if you need more than plain text.

Dmitry Grigoryev
  • 1,960
  • 14
  • 23
1

Three other ways:

$ echo -e '\x2dn' # ASCII hexadecimal value
-n
$ echo -e '\u002dn' # Unicode code point
-n
$ echo -e '\u2dn' # Unicode code point shortened
-n
kos
  • 41,378
0

You can run

printf -n;echo

Tested in Busybox Ash

jiwopene
  • 219