如何将linux格式文件转成windows可认文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将linux格式文件转成windows可认文件相关的知识,希望对你有一定的参考价值。

参考技术A 在Windows下换行时,有两个字符:回车(/r)和换行(/n)。但在Linux下,只有一个换行(/n)
可使用unix2dos和dos2unix命令进行格式的转换:
参数:
-k 保持输出文件和输入文件的日期时间戳不变
-o file 默认模式 . 将file转换,并输出到file
-n infile outfile 新模式. 转换infile, 并输出到outfile

1. unix2dos

假设用vi新建一文本文件,输入123456
[root@centos test]# ls -l a.txt
-rw-r--r-- 1 root root 7 Jan 7 21:31 a.txt
[root@centos test]# hexdump -c a.txt
0000000 1 2 3 4 5 6 /n
0000007
[root@centos test]# unix2dos -n a.txt b.txt
unix2dos: converting file a.txt to file b.txt in DOS format ...
[root@centos test]# ls -l
total 8
-rw-r--r-- 1 root root 7 Jan 7 21:31 a.txt
-rw------- 1 root root 8 Jan 7 21:34 b.txt
[root@centos test]# hexdump -c a.txt
0000000 1 2 3 4 5 6 /n
0000007
[root@centos test]# hexdump -c b.txt
0000000 1 2 3 4 5 6 /r /n
0000008
b.txt是转换后的DOS下的文件

2. dos2unix
[root@centos test]# dos2unix -n b.txt c.txt
dos2unix: converting file b.txt to file c.txt in UNIX format ...
[root@centos test]# ls -l
total 12
-rw-r--r-- 1 root root 7 Jan 7 21:31 a.txt
-rw------- 1 root root 8 Jan 7 21:34 b.txt
-rw------- 1 root root 7 Jan 7 21:38 c.txt
[root@centos test]# hexdump -c b.txt
0000000 1 2 3 4 5 6 /r /n
0000008
[root@centos test]# hexdump -c c.txt
0000000 1 2 3 4 5 6 /n
0000007
c.txt是转换后unix下的文本文件本回答被提问者采纳

如何将utf8格式转成Excel格式

参考技术A 右击该文件----重命名,输入万名称后再在后面输入.xls
一定不要忘记“ . ”
参考技术B 呵呵 。你说的这两个格式都不是一回事,一个是编码格式,一个是文件格式。本回答被提问者采纳 参考技术C 233533

以上是关于如何将linux格式文件转成windows可认文件的主要内容,如果未能解决你的问题,请参考以下文章

如何将windows日志转成syslog格式

怎么把图片文件转成xml文件

java 有啥好用的视频转码工具,需要将视频转成MP4 格式

如何使用heic图片转换精灵,将heic转成JPG

如何使用heic图片转换精灵,将heic转成JPG

如何将png格式、jpg格式的图片转成24bit的bmp图片。