File is bidd.nus.edu.sg/group/TTD/filedownload.asp?file=flatfiles/drug-disease_TTD2013.txt
When I use cat -A drug-disease_TTD2013.txt
it shows ^M$
in the end of each line. In vim, set list
and it shows only $
without ^M
.
sed 's/\r//' drug-disease_TTD2013.txt >1.t
can make it the same. but I do not know why? (revised)
Also in manual of cat: -v use ^ and M- notation, except for LFD and TAB
What's the meaning of that?
not the same situation in this other question
Thank you.