Ok this might sound like a n00b question, so please just don't refer me to manuals, straight up answers please.
Basically, I just wanna know how to make an OR in an If statement.
I'm making a script that'll read off a website and basically I want it to find one thing or another thing.
So in this case, would this work?
if {[string match "*whatever*" $line] || [string match *other* $line]}
So say if whatever doesn't exsit on the page, but other does, so continue, and vice versa, other exists, but whatever does not, so it still continues.
Help would be greatly appreciated.