On Tue, 5 Mar 2013, Ángel González wrote:
wget --delete <URL pointing to resource that must be deleted>
I would prefer something like --method=delete, which would also allow other methods (eg. OPTIONS, TRACE, PROPFIND...)
Which incidentally is how curl does it (just with a differently named option): $ curl --request DELETE http://example.com/ -- / daniel.haxx.se
