系统相关
首页 > 系统相关> > windows中的换行符和Linux中的换行符

windows中的换行符和Linux中的换行符

作者:互联网

# cat -A tmp.tmp
120.4987 12.717858^M$

 ^M 对应的字符是 \r

 

# cat tmp.txt | awk -vRS='\r\n' '{print $2,$1}'

 

或者转换格式文件

yum install dos2unix -y

dos2unix tmp.tmp

 

标签:tmp,txt,windows,cat,格式文件,Linux,dos2unix,换行符
来源: https://www.cnblogs.com/daixubinbin/p/14776291.html