$RevSite ~~ s| .*? 'https://www.eset.com/us/business/endpoint-security/windows-security/download/?type=13554' |https://www.eset.com/us/business/endpoint-security/windows-security/download/?type=13554|;
I cleaned that regex up:
if ( $RevSite ~~ s| .*?
('https://www.eset.com/us/home/internet-security/download/?type=13554')
|$0| ) {
What is in the first part between the () is copied
into $0, so I don't have to repeat it. Makes it
a lot easier to read.
_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx