Search found 2 matches

by cc2
24 Mar 2009 11:39
Forum: DOS Batch Forum
Topic: Saving source of website in a txt file
Replies: 1
Views: 4848

Saving source of website in a txt file

I want to make a batch that saves the source of a website in a text file, i know how to save stuff in a text file though. I have tried: @echo off title Source to txt by cc2 cls echo The source will be placed in the same folder as this batch file is in. set input= set /p input=Enter the website you w...
by cc2
24 Mar 2009 11:34
Forum: DOS Batch Forum
Topic: How to loop through the results from "show tables"
Replies: 2
Views: 5699

Post

Just use:

Code: Select all

:start
some codes and stuff here
goto start
That will loop the script, if that's what you wanted :?: