Bash
9 行
$str=<<<EOT
string
string2
EOT;
$str1="string\r\nstring2";
if($str==$str1) 
{
    echo "str==str1";
}