Skip to content
Snippets Groups Projects
Commit 843f59ef authored by dardyfella's avatar dardyfella Committed by Michael Aaron Murphy
Browse files

fix: Improved parsing and handling of backslashes

Fixes the issue where:

```
let arg = todo
echo -e "\n\n$arg"
```

Returns:

```

ntodo
```

Instead of:

```

todo
```

---

Fixes issue where:

```
echo -e "one\\\\\ntwo\\\\\nthree"
```

Returns:

```
one\\ntwo\\nthree
```

Instead of:

```
one\
two\
three
```
parent c8353e9d
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment