Richard Ivarson wrote:
Richard Ivarson schrieb:
[..]
A) *wget*
Fetching the files with wget works:
wget --user=NAME --password=PASS
https://webdavserver.com/folder/fileAA.txt
I've seen two handicaps:
1) I want to use a script so I don't want to store the password in the
script
[..]
curl --user NAME:PASSWORD
https://webdavserver.com/folder/{fileAA,fileBB,fileCC,fileDD,fileEE,}.txt
-O -O -O -O -O
... I forgot to mention: In contrast to A)1) with curl you can ommit the
":PASSWORD" in the script. The curl then nicely asks for it at runtime.
I don't know about getting rid of the five -O's (have you tried it with
just one to see whether that does what you want?), but you could shorten
the command line a bit using
https://webdavserver.com/folder/file{AA,BB,CC,DD,EE}.txt
The shell quite happily expands braces as a portion of a filename:
[EMAIL PROTECTED] ~
$ echo https://server/path/file{AA,BB,CC,DD,EE}.txt
https://server/path/fileAA.txt https://server/path/fileBB.txt
https://server/path/fileCC.txt https://server/path/fileDD.txt
https://server/path/fileEE.txt
regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
--------------- Asciimercial ------------------
Get on the web: Blog, lens and tag the Internet
Many services currently offer free registration
----------- Thank You for Reading -------------
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/