Issue
can I use WGET to get, let's say, status 200 OK and save that status somewhere? If not, how can I do that using ubuntu linux?
Thanks!
Solution
With curl you can
curl -L -o /dev/null -s -w "%{http_code}\n" http://google.com >> status.txt
Answered By - mugiseyebrows Answer Checked By - Senaida (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.