Let's say I have an array from file /some/file.json:
[
"This.FilE",
"That.file",
"Another.FIle"
]
Then I have a string x with value ThiS.FIle.is.HeRe, now I wanted to know whether any of the string in the array matched the substring in x, case-insensitive (true/false result). Is there any clever way to do this with jq one-liner?