Trying to test if a bit of text contains a backtick in #Powershell, I couldn’t get -like “``” to work, but this seems to:

if ($Line.Contains('`'))

The bit in brackets is single quote, back-tick, single quote

#TodayILearned