Ask the great experts, how many ways are there to generate text files (*.txt) using DOS commands?
Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum
DOS stands for freedom, openness and progress. Let us work hard, learn from the openness and GNU spirit of FreeDOS and Linux, and together build and grow a free GNU GPL world!
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