initial commit

This commit is contained in:
Wifinigel 2023-01-19 21:27:15 +00:00
commit c782dde326
61 changed files with 1457 additions and 0 deletions

View file

@ -0,0 +1,7 @@
# ch10-05-error-check.rsc
:local WebSites { "badname1234.com"; "google.com"};
:foreach SiteName in=$WebSites do={
:local SiteIpAddress [/resolve $SiteName];
:put "Site IP for $SiteName is $SiteIpAddress";
}