From: Siraaj Khandkar Date: Tue, 17 Mar 2020 02:33:23 +0000 (-0400) Subject: Relocate path to a variable X-Git-Url: https://git.xandkar.net/?p=covid-19-scrapers.git;a=commitdiff_plain;h=cb4ba2007be59c08a5d0458ed629d20ffae69c1f Relocate path to a variable --- diff --git a/fetch-case-count-usa-ny b/fetch-case-count-usa-ny index 95a039f..b3bd251 100755 --- a/fetch-case-count-usa-ny +++ b/fetch-case-count-usa-ny @@ -50,6 +50,10 @@ esac curl 'https://health.ny.gov/diseases/communicable/coronavirus/' \ | hxpipe \ | awk -v location="$location" ' + BEGIN { + target_path = "/html/body/div/div/div/div/div/div/table/tr/td" + } + /^[\(\)]/ { update_node() next @@ -64,12 +68,12 @@ curl 'https://health.ny.gov/diseases/communicable/coronavirus/' \ XmlPayload = substr($0, 2, length($0)) } - XmlPath == "/html/body/div/div/div/div/div/div/table/tr/td" && XmlPayload == location { + XmlPath == target_path && XmlPayload == location { found = 1; next } - XmlPath == "/html/body/div/div/div/div/div/div/table/tr/td" && found { + XmlPath == target_path && found { print XmlPayload; found = 0; next;