なぜその引数をサポートしていないのかを説明することはできません(プログラマーにそれについて尋ねる必要があるかもしれません)。私が知っているのは、Linuxボックスで次のように表示されることです。
$ /bin/echo --help
Usage: /bin/echo [SHORT-OPTION]... [STRING]...
or: /bin/echo LONG-OPTION
Echo the STRING(s) to standard output.
-n do not output the trailing newline
-e enable interpretation of backslash escapes
-E disable interpretation of backslash escapes (default)
--help display this help and exit
--version output version information and exit
If -e is in effect, the following sequences are recognized:
*emphasized text*
\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
NOTE: your shell may have its own version of echo, which usually supersedes
the version described here. Please refer to your shell's documentation
for details about the options it supports.
Report echo bugs to bug-coreutils@gnu.org
GNU coreutils home page: <http://www.gnu.org/software/coreutils/>
General help using GNU software: <http://www.gnu.org/gethelp/>
Report echo translation bugs to <http://translationproject.org/team/>
- これは
\e
エスケープについて言及していません
- それは
/bin/echo
gnu coreutilsからのものだと言っています。アップルがUnixシステムコンポーネントのソースを時々変更する(たとえば、zshからbashに移動する)ときに/bin/echo
、LeopardとSnow Leopardの間で変更があったかどうかを確認します。gnuの場合は、gnu.orgの人々に、なぜそれらのシーケンスを含めないのかを尋ねることができます。
回避策については(より興味深い):を使用しません/bin/echo
が、bashのビルトインecho
はLinuxボックスで動作します。組み込みのエコー(またはさらに不明瞭なもの)なしでbashに変更された場合は、シェルのあまり知られていないこの機能(少なくともbashおよびzshで動作します)を試すこともできます。
$ echo $'\e[34m''COLORS'
これは、bashのマンページの対応する部分です。
Words of the form $'string' are treated specially. The word expands to string, with
backslash-escaped characters replaced as specified by the ANSI C standard. Backslash
escape sequences, if present, are decoded as follows:
\a alert (bell)
\b backspace
\e an escape character
\f form feed
\n new line
\r carriage return
\t horizontal tab
\v vertical tab
\\ backslash
\' single quote
\nnn the eight-bit character whose value is the octal value nnn (one to three
digits)
\xHH the eight-bit character whose value is the hexadecimal value HH (one or
two hex digits)
\cx a control-x character
The expanded result is single-quoted, as if the dollar sign had not been present.
A double-quoted string preceded by a dollar sign ($) will cause the string to be trans‐
lated according to the current locale. If the current locale is C or POSIX, the dollar
sign is ignored. If the string is translated and replaced, the replacement is double-
quoted.