where do we find a free script that does it all and still saves it in a txt file?
There are several commands from various programming languages that you can use. For example, if you are using python, you can use the open() function + parameter (
w)rite
open ('youfile.txt', '
w')
whether your file exists or not (if the file does not exist it will create automatically) or you can use (
a)ppend parameter
open ('youfile.txt', '
a')
your result will be added to the existing "text" on your file