sh の文字列に改行を挿入するにはどうすればいいですか? 質問する

sh の文字列に改行を挿入するにはどうすればいいですか? 質問する

これ

STR="Hello\nWorld"
echo $STR

出力として生成する

Hello\nWorld

の代わりに

Hello
World

文字列に改行を入れるにはどうしたらいいでしょうか?

注: この質問はechoに関するものではありません。 については知っていますが、 を改行として解釈する同様のオプションを持たない他のecho -eコマンドに、引数として文字列 (改行を含む) を渡すことができるソリューションを探しています。\n

ベストアンサー1

Bash を使用している場合は、特別に引用符で囲まれた 内でバックスラッシュ エスケープを使用できます$'string'。たとえば、 を追加します\n

STR=$'Hello\nWorld'
echo "$STR" # quotes are required here!

プリント:

Hello
World

他のシェルを使用している場合は、文字列に改行をそのまま挿入するだけです。

STR='Hello
World'

Bash は文字列内の他の多くのバックスラッシュ エスケープ シーケンスを認識します$''。以下は 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
      \E     an escape character
      \f     form feed
      \n     new line
      \r     carriage return
      \t     horizontal tab
      \v     vertical tab
      \\     backslash
      \'     single quote
      \"     double 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 ($"string") will cause
the string to be translated 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.

おすすめ記事