How can I print "-n" with `echo`?

Michael

I can't figure how to print the string "-n" with the over 30 years-old command echo.

I tried these:

Michaels:Scripts$ echo -n
Michaels:Scripts$ echo "-n"
Michaels:Scripts$ echo -e "-n"
Michaels:Scripts$ echo -- -n
-- -n
Michaels:Script$ echo -- "-n"
-- -n
Michaels:Script$ echo "\-n"
\-n

I use Mac OS X ML. I consider this behaviour very weird and unexpected.

slm

If you don't want to use prinf you have a couple of of options, at least according to this SO Q&A, titled: echo “-n” will not print -n?.

This seems to be your best option:

$ echo "x-n" | cut -c 2-
-n

Or some variation:

$ echo -- '-n'|cut -d" " -f2
-n

printf

printf doesn't have this issue:

$ printf "%s\n" -n
-n

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How do I print the result of a command with 'echo'?

分類Dev

How can I make a echo in echo in laravel with curly braces?

分類Dev

How can I echo with escaped spaces?

分類Dev

Unable to use an environment variable in command prompt, even though I can print it's value using echo command

分類Dev

How can I print multidimensional arrays in C?

分類Dev

how can i print this using String Methods

分類Dev

bats - how can i echo the file name in a bats script for reporting

分類Dev

How can I deliberately create and echo in my headset's microphone?

分類Dev

How can I echo nested variables inside a for loop?

分類Dev

How can I print out a map[string]interface{} as json?

分類Dev

How can I print the log for a branch other than the current one?

分類Dev

How can I print a void method inside a button using Swing?

分類Dev

How can I tell Selenium to press cancel on a print popup?

分類Dev

How can I tell Selenium to press cancel on a print popup?

分類Dev

How can I print all the elements of a vector in a single string in R?

分類Dev

How can i control the number of pages to be print using javascript?

分類Dev

How can I show and update a list of print statements in a Bokeh dashboard?

分類Dev

How can I print list in python? (should be formatted)

分類Dev

How can I print the return value of a JavaScript function in HTML?

分類Dev

How can I keep input track log in shiny, then print it and save it?

分類Dev

How can I print out HTML markup based on an object hierarchy?

分類Dev

How can I print my swap function with Struct

分類Dev

How can I print contents of a text file in git bash?

分類Dev

How can I print a '/' at a specific index in my matrix in python

分類Dev

How can I print in one column the SUM of two columns

分類Dev

How can I print the requests in boost.asio?

分類Dev

How can I print multiple elements from an array inJavaSCript?

分類Dev

How Can i display the output of MySQL “PRINT” Command in C#?

分類Dev

How can I print a summary of Maildir contents when logging into a shell?

Related 関連記事

  1. 1

    How do I print the result of a command with 'echo'?

  2. 2

    How can I make a echo in echo in laravel with curly braces?

  3. 3

    How can I echo with escaped spaces?

  4. 4

    Unable to use an environment variable in command prompt, even though I can print it's value using echo command

  5. 5

    How can I print multidimensional arrays in C?

  6. 6

    how can i print this using String Methods

  7. 7

    bats - how can i echo the file name in a bats script for reporting

  8. 8

    How can I deliberately create and echo in my headset's microphone?

  9. 9

    How can I echo nested variables inside a for loop?

  10. 10

    How can I print out a map[string]interface{} as json?

  11. 11

    How can I print the log for a branch other than the current one?

  12. 12

    How can I print a void method inside a button using Swing?

  13. 13

    How can I tell Selenium to press cancel on a print popup?

  14. 14

    How can I tell Selenium to press cancel on a print popup?

  15. 15

    How can I print all the elements of a vector in a single string in R?

  16. 16

    How can i control the number of pages to be print using javascript?

  17. 17

    How can I show and update a list of print statements in a Bokeh dashboard?

  18. 18

    How can I print list in python? (should be formatted)

  19. 19

    How can I print the return value of a JavaScript function in HTML?

  20. 20

    How can I keep input track log in shiny, then print it and save it?

  21. 21

    How can I print out HTML markup based on an object hierarchy?

  22. 22

    How can I print my swap function with Struct

  23. 23

    How can I print contents of a text file in git bash?

  24. 24

    How can I print a '/' at a specific index in my matrix in python

  25. 25

    How can I print in one column the SUM of two columns

  26. 26

    How can I print the requests in boost.asio?

  27. 27

    How can I print multiple elements from an array inJavaSCript?

  28. 28

    How Can i display the output of MySQL “PRINT” Command in C#?

  29. 29

    How can I print a summary of Maildir contents when logging into a shell?

ホットタグ

アーカイブ