प्रत्येक कमांड के लिए ऑनलाइन मैनुअल में बहुत सारी जानकारी है; यह हमेशा एक सवाल देने और पोस्ट करने से पहले उस पर ध्यान देने योग्य है।
man echo
बताते हैं कि कौन से सीक्वेंस से बचने की अनुमति है। यहाँ एक उद्धरण है।
If -e is in effect, the following sequences are recognized:
\0NNN the character whose ASCII code is NNN (octal)
\\ backslash
\a alert (BEL)
\b backspace
\c produce no further output
\f form feed
\n new line
\r carriage return
\t horizontal tab
\v vertical tab
तो \ x86 सिर्फ गलत है। यह अष्टाधारी होना चाहिए और अपनी स्ट्रिंग को दोहरे उद्धरणों में रखना चाहिए, अन्यथा यह शेल द्वारा व्याख्या की जाएगी।
उदाहरण:
$ echo -e -n "\033\07\017" >tf
$ od -c tf
0000000 033 \a 017
0000003
संपादित करें 1
जैसा कि ओकी ने मुझे याद दिलाया, गूंज भी एक शेल बिल्डिन है, इसलिए जानकारी बैश के लिए मैनुअल पेज में है man bash
; यहाँ एक प्रासंगिक अनुभाग है। लेकिन पीछे के स्लैश की व्याख्या करने वाले शेल को रोकने के लिए अपने स्ट्रिंग के चारों ओर उद्धरण का उपयोग करें "
।
echo [-neE] [arg ...]
Output the args, separated by spaces, followed by a newline. The return status is always
0. If -n is specified, the trailing newline is suppressed. If the -e option is given,
interpretation of the following backslash-escaped characters is enabled. The -E option
disables the interpretation of these escape characters, even on systems where they are
interpreted by default. The xpg_echo shell option may be used to dynamically determine
whether or not echo expands these escape characters by default. echo does not interpret --
to mean the end of options. echo interprets the following escape sequences:
\a alert (bell)
\b backspace
\c suppress further output
\e an escape character
\f form feed
\n new line
\r carriage return
\t horizontal tab
\v vertical tab
\\ backslash
\0nnn the eight-bit character whose value is the octal value nnn (zero to three octal dig‐
its)
\xHH the eight-bit character whose value is the hexadecimal value HH (one or two hex dig‐
its)