Showing posts with label WGET. Show all posts
Showing posts with label WGET. Show all posts

Saturday, April 29, 2023

Fix: Wget HTTP request sent, awaiting response... 403 Forbidden

 wget --user-agent="Mozilla" https://www.domain.com/file.extension

or

 wget --user-agent="Mozilla" https://domain.com/file.extension

or

 wget --user-agent="Mozilla" www.domain.com/file.extension

Extract Domain from email in Excel or Google sheet

  =TEXTAFTER( A2 , "@") or, =MID(A1, FIND("@", A1) + 1, LEN(A1) - FIND("@", A1))