请教大侠,dos命令有几种方式生成文本文件(*.txt)
联盟域名:www.cn-dos.net 论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!
find "" /v < con > filename
text
(^Z)
more < con > filename
text
(^Z)
sort < con > filename
text
(^Z)
echo text|find "" /v > filename
echo text|more > filename
echo text|sort > filename
echo text|sort|find "" /v > filename
echo text|find "" /v|sort > filename
echo text|sort|more|find "" /v > filename