C:\tmp\text>dos2unix hello.txt helloUNIX.txt
सैड और भी अधिक व्यापक रूप से उपलब्ध है और इस तरह की बात भी कर सकता है अगर dos2unix स्थापित नहीं है
C:\tmp\text>sed s/\r// hello.txt > helloUNIX.txt
आप भी कोशिश कर सकते हैं:
cat hello.txt | tr -d \r > helloUNIX2.txt
यहाँ परिणाम हैं:
C:\tmp\text>dumphex hello.txt
00000000h: 48 61 68 61 0D 0A 68 61 68 61 0D 0A 68 61 68 61 Haha..haha..haha
00000010h: 0D 0A 0D 0A 68 61 68 61 0D 0A ....haha..
C:\tmp\text>dumphex helloUNIX.txt
00000000h: 48 61 68 61 0A 68 61 68 61 0A 68 61 68 61 0A 0A Haha.haha.haha..
00000010h: 68 61 68 61 0A haha.
C:\tmp\text>dumphex helloUNIX2.txt
00000000h: 48 61 68 61 0A 68 61 68 61 0A 68 61 68 61 0A 0A Haha.haha.haha..
00000010h: 68 61 68 61 0A haha.