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.
trこのコマンドを使用して、出現する文字列 "\n" をすべて改行 (\n) に置き換えたいと考えています。
tr
試してみtr '\\n' '\n'ましたが、これは任意の「\」と任意の「n」に一致するようです
tr '\\n' '\n'
これを行う方法は次のsedとおりです。
sed
sed 's/\\n/\n/g'
使用例:
ファイル内の のすべてのオカレンスを\nインプレースで置換するには:
\n
sed -i 's/\\n/\n/g' input_filename
パイプを通るすべてのオカレンスを置き換えて\n、別のファイルに保存するには
cat file1 file2 file3 file4 | sed 's/\\n/\n/g' > output_file