Edson Rodrigues
Edson Rodrigues

Reputation: 345

How to use wget on Windows just to access an URL WITHOUT download any page

How to use wget on Windows just to access an URL WITHOUT download any page ? I just want to send a HTTP REQUEST . ( It will dispare a function on cakephp )

Upvotes: 0

Views: 210

Answers (1)

Inigo Flores
Inigo Flores

Reputation: 4469

I think you want to issue wget as follows:

wget http://example.com/controller/action/param -O NUL

This is valid for GET requests.

Upvotes: 1

Related Questions