Fix if regex match
@ -412,7 +412,7 @@ if [[ "$A" == "$B" ]]
```bash
# Regex
if [[ "A" =~ "." ]]
if [[ "A" =~ . ]]
```