我正在尝试创建批处理文件脚本以将普通.txt
文档转换为完全垂直的文档.例如:
从:
This is a test document, it is displaying characters on the same line.
至:
T h i s i s a t e s t d o c u m e n t , i t i s d i s p l a y i n g c h a r c t e r s o n t h e s a m e l i n e .
MC ND.. 5
也许这不能完全满足您的需求,但作为一个起点,您可以尝试
cmd /u /c"type normal.txt" | find /v "" > vertical.txt
这将启动cmd
具有unicode输出的实例.在此实例中,normal.txt
文件将发送到标准输出.来自cmd
实例的所有输出都通过管道传输到一个find
命令,该命令将看到空字符(unicode输出是每个字符序列两个字节,其中一个为null或0x00
ascii)作为行终止符,并将在每个字符后输出一个新行.所有数据都重定向到输出文件.
也许这不能完全满足您的需求,但作为一个起点,您可以尝试
cmd /u /c"type normal.txt" | find /v "" > vertical.txt
这将启动cmd
具有unicode输出的实例.在此实例中,normal.txt
文件将发送到标准输出.来自cmd
实例的所有输出都通过管道传输到一个find
命令,该命令将看到空字符(unicode输出是每个字符序列两个字节,其中一个为null或0x00
ascii)作为行终止符,并将在每个字符后输出一个新行.所有数据都重定向到输出文件.