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.
行内の各 \n を "\n (二重引用符の後に改行) に置き換える必要があります。
これはうまくいくはずです。しかし、それは何もしません。エラーも報告されません。手がかりはありますか?
sed -i 's/\n/\"\n/' filename
以前は、ファイルには次が含まれています。
line 1 line 2
その後、まったく同じものが含まれています。
ありがとう
以下を試してください:
sed -i 's/$/"/' filename
$行の終わりを示すために使用されます。
$