|
Hi All,
I need to download two Excel files onto the client, and then run a (diff) executable against them. I know how to download a single Excel file, from here . But how to download a second one automatically in succession? And then how to run a batch...
Started by Mike on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To download multiple files at once you have two main options:
1) Just open multiple windows to your page generation script to download multiple files as per http.
To answer correctly.
|
|
Hi,
from time to time I find some documentation on the web that I need for offline use on my notebook. Usually I fire up wget and get the whole site.
Many projects however are now switching to wikis, and that means I download every single version and ...
Started by Boldewyn on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I would stick to http://en.wikipedia.org/wiki/Special%3AExport
From the wget man page:
-R rejlist --reject rejlist
Specify comma-separated lists of file name suffixes ... .
Most of them frown on that and Wikipedia actively shuts them down with robots.txt .
|
|
I'm looking for a tool/technique which is the exact oposite to Oracle Loader. I need to read the whole table with geometries as fast as possible. The application is running on the same machine where Oracle is installed so some kind of "direct" access ...
Started by Karol Kolenda on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Hi,
Just to clarify, do you need to get the data from the oracle table into a flat file? If so Tom Kyte has several examples http://asktom.oracle.com/tkyte/flat/index.html
Regards
Where is the data going ? If you want an Oracle compatible 'backup' to... .
|
Ask your Facebook Friends
|
Updated May 5th 2011
Note that at the moment this only works for English 'ENU' updates.
This is now using aria2 instead messing around with wget. It uses a simpler batch which calls aria2 to parse a list of direct urls and will download in parallel (wget...
Started by Muppet Hunter on
, 20 posts
by 9 people.
Answer Snippets (Read the full thread at msfn):
This is Great, Muppet Hunter! _-X-_ has a batch to the confirmation.aspx....
2010 - 10:21 PM Here's a couple of batch files which work with wget as described above to download all into it and keep encouraging you in your helpful work.
|
|
Is there some nice documentation for windows batch scripting I can download and refer to while offline?
Started by Dean on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Just (some of the are only available in batch scripts) and....
Google hits, for "windows batch scripting documentation" - first page:
http of default batch commands you just type:
help
Also, you can look up the commands in Windows Help.
|
|
Hi I have created a java application and created a jar file. Then I created a batch file eg-> startup.bat The contents of this file is java -jar MyApp.jar
Now if I double click the batch file then my java application works because both the jar file...
Started by Sunil Kumar Sahoo on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I understand that you would like will then be fetched from the manifest file... .
Set The problem is that the batch file doesn't know where the jar is, it is looking relatively desktop, make a shortcut to the batch file rather than a copy.
|
|
Is there a way to replace some characters in a text file with a batch ?
I didn't find any command to do that.
Started by Jérôme on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The quick answer is "No, not with basic windows.
You can search for a command line program like GREP you can call from a batch that will take can be download here , for various platforms.
|
|
Is there free a way to batch-convert many Word-docs - and just have them saved as [originalfilename].pdf?
Started by Kjensen on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at superuser):
This is how I would do it:....
I've never used this product, but it does list "Batch Print from Microsoft Office" as a feature.
I've not tried it but there is a batch method using OpenOffice.org that you could test: http://www.pdf995.com/ .
|
|
I'm creating a batch process to move some information from my database to external files. This task is manageable, but there's a lot of data that needs to be processed and it will probably take about a month.
During this month new information will be ...
Started by AEIOU on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you need to make a ....
NOTE that I am sure why clarify.
download" process? If new "entries" come, they'll just be picked up later, no?
Of course, you process your batch in order by using a "creation/modified" date field indexing field.
|
|
I know I have already answered a similar question ( Running Batch File in background when windows boots up ), but this time I need to launch a batch:
from another batch without any DOS windows displayed with all arguments passed to the invisible batch...
Started by VonC on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
"""" & WScript.Arguments(0) & """" & sargs, 0, False
Do you need the second batch file to run asynchronously? Typically one batch file runs another synchronously with the call command, and the second one would share the first one's window....
|