ベストアンサー1
次のいずれかを試してください。
awk -vORS= '{print sub(/\r$/,"") ? $0" " : $0"\n"}' < infile > outfile
awk 'ORS = sub(/\r$/,"") ? " " : "\n"' < infile > outfile
perl -pe 's/\r\n/ /' < infile > outfile
またはその場で:
perl -pe 's/\r\n/ /' -i file
次のいずれかを試してください。
awk -vORS= '{print sub(/\r$/,"") ? $0" " : $0"\n"}' < infile > outfile
awk 'ORS = sub(/\r$/,"") ? " " : "\n"' < infile > outfile
perl -pe 's/\r\n/ /' < infile > outfile
またはその場で:
perl -pe 's/\r\n/ /' -i file