私のセリフがめちゃくちゃになるので\n\r
fromを交換したいです。$4
入力する
Hello World Example Text\r\n
new line
希望の出力
Hello World Example Text new line
区切り記号は次のとおりです。\t
ベストアンサー1
sed -e 's/\\r\\n//g' filename| perl -pne 's/\n/ /g
'
出力
Hello World Example Text new line
Python
#!/usr/bin/python
import re
g=[]
m=re.compile(r'\\r\\n')
k=open('file','r')
for i in k:
g.append(re.sub(m," ",i).strip())
print " ".join(g)