Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xpg_echoショップが有効または無効になった場合に何が変わるのかわかりません。
xpg_echo
マニュアルでは:
xpg_echo If set, the echo builtin expands backslash-escape sequences by default.
xpg_echo を有効化/無効化しようとしましたが、echo は同じ動作をします。
echo が次のようなエスケープ シーケンスを処理するかどうかを決定します\n。
\n
$ shopt -u xpg_echo # Disable xpg_echo $ echo "Hello\nworld" Hello\nworld $ shopt -s xpg_echo # Enable xpg_echo $ echo "Hello\nworld" Hello world