word pad-sorting alphabetically

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to add to a list in a saved document and have it automatically
put the list in alphabetical order?
 
It cannot be denied that "mysties1 said:
Is there a way to add to a list in a saved document

echo some text >> list1.txt


and have it automatically
put the list in alphabetical order?

sort list1.txt > list2.txt
del list1.txt
rename list2.txt list1.txt
 
Back
Top