Có rất nhiều thông tin trong hướng dẫn trực tuyến cho mỗi lệnh; luôn luôn đáng để xem xét điều đó trước khi từ bỏ và đăng câu hỏi.
man echo
giải thích các chuỗi thoát được cho phép. Đây là một trích xuất.
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
Vì vậy, \ x86 không chính xác. nó phải là số bát phân và đặt chuỗi của bạn trong dấu ngoặc kép, nếu không nó sẽ được giải thích bởi shell.
Thí dụ:
$ echo -e -n "\033\07\017" >tf
$ od -c tf
0000000 033 \a 017
0000003
Chỉnh sửa 1
Như Ouki đã nhắc nhở tôi, tiếng vang cũng là một vỏ dựng sẵn, vì vậy thông tin nằm trong trang hướng dẫn sử dụng bash , man bash
; đây là phần có liên quan. Nhưng sử dụng dấu ngoặc kép "
quanh chuỗi của bạn để ngăn vỏ diễn giải các dấu gạch chéo ngược.
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)