Merge pull request #1238 from btandersen383/patch-1

Fix if regex match
This commit is contained in:
Rico Sta. Cruz 2020-01-01 10:05:33 +11:00 committed by GitHub
commit 2906fc9c6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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